Files
xWebinarService/Providers/XWebinarGroupStore.cs
T

20 lines
686 B
C#

using System;
using xDataService.Configuration;
using xDataService.InMemRepositories;
using xDataService.Interfaces;
using xWebinarService.Interfaces;
using xWebinarService.Models.Entities;
namespace xWebinarService.Providers
{
public class XWebinarGroupStore : XBaseInMemoryRepositoy<XWebinarGroupEntity, Guid>, IXWebinarGroupStore
{
public XWebinarGroupStore(
XDataServiceConfiguration configuration,
IXKeyGenerator<XWebinarGroupEntity, Guid> keyGenerator = null,
IXBaseRepositoryEvents<XWebinarGroupEntity> baseRepositoryEvents = null
) : base(configuration, keyGenerator, baseRepositoryEvents)
{
}
}
}