22 lines
671 B
C#
22 lines
671 B
C#
using System;
|
|
using xDataService.Configuration;
|
|
using xDataService.Providers;
|
|
using xWebinarService.Interfaces.Entities;
|
|
using xWebinarService.Models.Entities;
|
|
|
|
namespace xWebinarService.Providers.Entities
|
|
{
|
|
public class XWebinarInMemoryRepository : XBaseInMemoryRepository<XWebinar, Guid>, IXWebinarRepository
|
|
{
|
|
public XWebinarInMemoryRepository(
|
|
XDataServiceConfiguration configuration,
|
|
IXWebinarKeyGenerator keyGenerator = null,
|
|
IXWebinarRepositoryEvents baseRepositoryEvents = null
|
|
) : base(
|
|
configuration,
|
|
keyGenerator,
|
|
baseRepositoryEvents
|
|
)
|
|
{ }
|
|
}
|
|
} |