Add String Service and Implement all of it's requirements as an xDashboard Package ...
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using GraphQL.Types;
|
||||
using xDataService.Configuration;
|
||||
using xDataService.GraphQL;
|
||||
using xStringService.Interfaces.Entities;
|
||||
using xStringService.Models.Entities;
|
||||
|
||||
namespace xDataHelper.GraphQL
|
||||
{
|
||||
public class XStringGraphQuery : XBaseGraphQLQuery<XString, int, XStringGraphType, IntGraphType>
|
||||
{
|
||||
public XStringGraphQuery(
|
||||
XDataServiceConfiguration configuration,
|
||||
IXStringRepository repository,
|
||||
IXStringGraphQLTypeHelper helper
|
||||
) : base(
|
||||
configuration,
|
||||
repository,
|
||||
helper
|
||||
)
|
||||
{ }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user