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, IXWebinarGroupStore { public XWebinarGroupStore( XDataServiceConfiguration configuration, IXKeyGenerator keyGenerator = null, IXBaseRepositoryEvents baseRepositoryEvents = null ) : base(configuration, keyGenerator, baseRepositoryEvents) { } } }