Add String Service and Implement all of it's requirements as an xDashboard Package ...
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using xDataService.Interfaces;
|
||||
using xStringService.Models.Entities;
|
||||
|
||||
namespace xStringService.Interfaces.Entities
|
||||
{
|
||||
public interface IXStringEvents : IXBaseRepositoryEvents<XString>
|
||||
{ }
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
using xDataService.Interfaces;
|
||||
using xStringService.Models.Entities;
|
||||
|
||||
namespace xStringService.Interfaces.Entities
|
||||
{
|
||||
public interface IXStringGraphQLTypeHelper : IXBaseGraphQLTypeHelper<XString, int>
|
||||
{ }
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
using xDataService.Interfaces;
|
||||
using xStringService.Models.Entities;
|
||||
|
||||
namespace xStringService.Interfaces.Entities
|
||||
{
|
||||
public interface IXStringRepository : IXBaseRepository<XString, int>
|
||||
{ }
|
||||
}
|
||||
Reference in New Issue
Block a user