Files
xWebinarService/Interfaces/Entities/IXWebinarSubscriberRepositoryProvider.cs
T

9 lines
306 B
C#

using xPushService.Interfaces;
using xWebinarService.Models.Entities;
using xWebinarService.Providers.Entities;
namespace xWebinarService.Interfaces.Entities
{
public interface IXWebinarSubscriberRepositoryProvider : IXBaseEntityProvider<XWebinarSubscriber, int, XWebinarSubscriberEntityHub>
{ }
}