last works on XString Service for Entities and Dtos ...
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using xPushService.Interfaces;
|
||||
using xStringService.Models.Entities;
|
||||
|
||||
namespace xStringService.Interfaces.Entities
|
||||
{
|
||||
public interface IXStringEntityHub : IXBaseEntityHub<XString, int>
|
||||
{ }
|
||||
}
|
||||
@@ -3,6 +3,6 @@ using xStringService.Models.Entities;
|
||||
|
||||
namespace xStringService.Interfaces.Entities
|
||||
{
|
||||
public interface IXStringEvents : IXBaseRepositoryEvents<XString>
|
||||
public interface IXStringKeyGenerator : IXKeyGenerator<XString, int>
|
||||
{ }
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
using xDataService.Interfaces;
|
||||
using xStringService.Models.Entities;
|
||||
|
||||
namespace xStringService.Interfaces.Entities
|
||||
{
|
||||
public interface IXStringRepositoryEvents : IXBaseRepositoryEvents<XString>
|
||||
{ }
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using xPushService.Interfaces;
|
||||
using xStringService.Models.Entities;
|
||||
using xStringService.Providers.Entities;
|
||||
|
||||
namespace xStringService.Interfaces.Entities
|
||||
{
|
||||
public interface IXStringRepositoryProvider : IXBaseEntityProviderr<XString, int, XStringEntityHub>
|
||||
{ }
|
||||
}
|
||||
Reference in New Issue
Block a user