9 lines
276 B
C#
9 lines
276 B
C#
using xCategoryService.Models.Dtos;
|
|
using xCategoryService.Models.Entities;
|
|
using xDataService.Interfaces;
|
|
|
|
namespace xCategoryService.Interfaces.Dtos
|
|
{
|
|
public interface IXSubCategoryRepositoryService : IXBaseRepositoryService<XSubCategory, XSubCategoryDto, int>
|
|
{ }
|
|
} |