last ...
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using xCategoryService.Interfaces.Entities;
|
||||
using xCategoryService.Models.Entities;
|
||||
using xDataService.Configuration;
|
||||
using xDataService.Providers;
|
||||
|
||||
namespace xCategoryService.Providers.Entities
|
||||
{
|
||||
public class XCategoryInMemoryRepository : XBaseInMemoryRepository<XCategory, int>, IXCategoryRepository
|
||||
{
|
||||
public XCategoryInMemoryRepository(
|
||||
XDataServiceConfiguration configuration,
|
||||
IXCategoryKeyGenerator keyGenerator = null,
|
||||
IXCategoryRepositoryEvents baseRepositoryEvents = null
|
||||
) : base(
|
||||
configuration,
|
||||
keyGenerator,
|
||||
baseRepositoryEvents
|
||||
)
|
||||
{ }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user