Add Entities and Repositories ...

This commit is contained in:
2025-12-07 13:22:49 +03:30
parent 620a11f368
commit b6ed60b0e7
9 changed files with 108 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
using xDataService.Interfaces;
using xTagService.Models.Entities;
namespace xTagService.Interfaces.Entities
{
public interface IXTagEvents: IXBaseRepositoryEvents<XTag>
{ }
}
@@ -0,0 +1,8 @@
using xDataService.Interfaces;
using xTagService.Models.Entities;
namespace xTagService.Interfaces.Entities
{
public interface IXTagGraphQLTypeHelper : IXBaseGraphQLTypeHelper<XTag, int>
{ }
}
+8
View File
@@ -0,0 +1,8 @@
using xDataService.Interfaces;
using xTagService.Models.Entities;
namespace xTagService.Interfaces.Entities
{
public interface IXTagRepository : IXBaseRepository<XTag, int>
{ }
}