Files
xCategoryService/Interfaces/Dtos/IXCategoryRepositoryService.cs
T
2026-06-01 01:04:55 +03:30

9 lines
267 B
C#

using xCategoryService.Models.Dtos;
using xCategoryService.Models.Entities;
using xDataService.Interfaces;
namespace xCategoryService.Interfaces.Dtos
{
public interface IXCategoryRepositoryService : IXBaseRepositoryService<XCategory, XCategoryDto, int>
{ }
}