9 lines
291 B
C#
9 lines
291 B
C#
using xDataService.Interfaces;
|
|
using xWebinarService.Models.Dtos;
|
|
using xWebinarService.Models.Entities;
|
|
|
|
namespace xWebinarService.Interfaces.Dtos
|
|
{
|
|
public interface IXWebinarSubscriberRepositoryService : IXBaseRepositoryService<XWebinarSubscriber, XWebinarSubscriberDto, int>
|
|
{ }
|
|
} |