Add Entities and Repositories ...
This commit is contained in:
@@ -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>
|
||||
{ }
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
using xDataService.Interfaces;
|
||||
using xTagService.Models.Entities;
|
||||
|
||||
namespace xTagService.Interfaces.Entities
|
||||
{
|
||||
public interface IXTagRepository : IXBaseRepository<XTag, int>
|
||||
{ }
|
||||
}
|
||||
Reference in New Issue
Block a user