10 lines
276 B
C#
10 lines
276 B
C#
using System;
|
|
using xDataService.Interfaces;
|
|
using xWebinarService.Models.Dtos;
|
|
using xWebinarService.Models.Entities;
|
|
|
|
namespace xWebinarService.Interfaces.Dtos
|
|
{
|
|
public interface IXWebinarRepositoryService : IXBaseRepositoryService<XWebinar, XWebinarDto, Guid>
|
|
{ }
|
|
} |