Files
xWebinarService/Interfaces/Entities/IXWebinarRepositoryProvider.cs
T

10 lines
291 B
C#

using System;
using xPushService.Interfaces;
using xWebinarService.Models.Entities;
using xWebinarService.Providers.Entities;
namespace xWebinarService.Interfaces.Entities
{
public interface IXWebinarRepositoryProvider : IXBaseEntityProvider<XWebinar, Guid, XWebinarEntityHub>
{ }
}