22 lines
682 B
C#
22 lines
682 B
C#
using System.Collections.Generic;
|
|
using AutoMapper;
|
|
using xCategoryService.Interfaces.Dtos;
|
|
using xCategoryService.Interfaces.Entities;
|
|
using xCategoryService.Models.Dtos;
|
|
using xCategoryService.Models.Entities;
|
|
using xDataService.Providers;
|
|
|
|
namespace xCategoryService.Providers.Dtos
|
|
{
|
|
public class XSubCategoryRepositoryService : XBaseRepositoryService<XSubCategory, XSubCategoryDto, int>, IXSubCategoryRepositoryService
|
|
{
|
|
public XSubCategoryRepositoryService(
|
|
IXSubCategoryRepository repository,
|
|
IEnumerable<Profile> mapperProfiles = null
|
|
) : base(
|
|
repository,
|
|
mapperProfiles
|
|
)
|
|
{ }
|
|
}
|
|
} |