This commit is contained in:
2026-06-20 21:52:38 +03:30
parent 426fd8c7ae
commit 4f8147e469
3 changed files with 867 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
using xCategoryService.Models.Dtos;
using xDataService.Interfaces;
namespace xCategoryService.Interfaces
{
public interface IXBaseCategoryProvider<TKey> : IXBaseReferencedProvider<XCategoryDto, TKey>
{}
}