add Data Support ...
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using xDataService.Interfaces;
|
||||
using xFileService.Models.Entities;
|
||||
|
||||
namespace xFileService.Interfaces.Entities
|
||||
{
|
||||
public interface IXFileEvents : IXBaseRepositoryEvents<XFile>
|
||||
{ }
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using System;
|
||||
using xDataService.Interfaces;
|
||||
using xFileService.Models.Entities;
|
||||
|
||||
namespace xFileService.Interfaces.Entities
|
||||
{
|
||||
public interface IXFileGraphQLTypeHelper: IXBaseGraphQLTypeHelper<XFile, Guid>
|
||||
{ }
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using System;
|
||||
using xDataService.Interfaces;
|
||||
using xFileService.Models.Entities;
|
||||
|
||||
namespace xFileService.Interfaces.Entities
|
||||
{
|
||||
public interface IXFileRepository : IXBaseRepository<XFile, Guid>
|
||||
{ }
|
||||
}
|
||||
Reference in New Issue
Block a user