Files
xCategoryService/Interfaces/Dtos/IXSubCategoryRepositoryService.cs
T

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>
{ }
}