21 lines
683 B
C#
21 lines
683 B
C#
using xCategoryService.Interfaces.Entities;
|
|
using xCategoryService.Models.Entities;
|
|
using xDataService.Configuration;
|
|
using xDataService.Providers;
|
|
|
|
namespace xCategoryService.Providers.Entities
|
|
{
|
|
public class XSubCategoryInMemoryRepository : XBaseInMemoryRepository<XSubCategory, int>, IXSubCategoryRepository
|
|
{
|
|
public XSubCategoryInMemoryRepository(
|
|
XDataServiceConfiguration configuration,
|
|
IXSubCategoryKeyGenerator keyGenerator = null,
|
|
IXSubCategoryRepositoryEvents baseRepositoryEvents = null
|
|
) : base(
|
|
configuration,
|
|
keyGenerator,
|
|
baseRepositoryEvents
|
|
)
|
|
{ }
|
|
}
|
|
} |