last ...
This commit is contained in:
@@ -1,21 +1,27 @@
|
||||
using xModels.Base;
|
||||
|
||||
namespace xDataService.Interfaces {
|
||||
public interface IXBaseGraphQLTypeHelper<TEntity, TKey>
|
||||
where TEntity : XBaseEntity<TKey> {
|
||||
string GetInQuerySingleName ();
|
||||
string GetInQueryCollectionName ();
|
||||
namespace xDataService.Interfaces
|
||||
{
|
||||
public interface IXBaseGraphQLTypeHelper
|
||||
{
|
||||
string GetInQuerySingleName();
|
||||
|
||||
string GetFindOneName ();
|
||||
string GetInQueryCollectionName();
|
||||
|
||||
string GetFindManyName ();
|
||||
string GetFindOneName();
|
||||
|
||||
string GetQueryName ();
|
||||
string GetFindManyName();
|
||||
|
||||
string GetCountName ();
|
||||
string GetQueryName();
|
||||
|
||||
string GetExistsName ();
|
||||
string GetCountName();
|
||||
|
||||
string GetGraphQLPath (string baseGraphPath = null);
|
||||
}
|
||||
string GetExistsName();
|
||||
|
||||
string GetGraphQLPath(string baseGraphPath = null);
|
||||
}
|
||||
|
||||
public interface IXBaseGraphQLTypeHelper<TEntity, TKey> : IXBaseGraphQLTypeHelper
|
||||
where TEntity : XBaseEntity<TKey>
|
||||
{ }
|
||||
}
|
||||
Reference in New Issue
Block a user