25 lines
825 B
C#
25 lines
825 B
C#
using xCategoryService.Interfaces.Entities;
|
|
using xCategoryService.Models.Entities;
|
|
using xDataService.Configuration;
|
|
using xDataService.Providers;
|
|
|
|
namespace xCategoryService.Providers.Entities
|
|
{
|
|
public class XSubCategoryMongoRepository : XBaseMongoRepository<XSubCategory, int>, IXSubCategoryRepository
|
|
{
|
|
public XSubCategoryMongoRepository(
|
|
XDataBaseConfiguration dbConfiguration,
|
|
XDataServiceConfiguration configuration,
|
|
string collectionName = null,
|
|
IXSubCategoryKeyGenerator keyGenerator = null,
|
|
IXSubCategoryRepositoryEvents baseRepositoryEvents = null
|
|
) : base(
|
|
dbConfiguration,
|
|
configuration,
|
|
collectionName,
|
|
keyGenerator,
|
|
baseRepositoryEvents
|
|
)
|
|
{ }
|
|
}
|
|
} |