Files
xCategoryService/Interfaces/IXBaseCategoryProvider.cs
T
2026-06-20 21:52:38 +03:30

8 lines
213 B
C#

using xCategoryService.Models.Dtos;
using xDataService.Interfaces;
namespace xCategoryService.Interfaces
{
public interface IXBaseCategoryProvider<TKey> : IXBaseReferencedProvider<XCategoryDto, TKey>
{}
}