фикс MockData и немного сервисов
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces
|
||||
{
|
||||
public interface IApplicationsInWorkService : IBaseService<ApplicationsInWork>
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -3,7 +3,7 @@ using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces
|
||||
{
|
||||
public interface IApplicationInWorkService : IBaseService<ApplicationsInWork>
|
||||
public interface IProcessService : IBaseService<Process>
|
||||
{
|
||||
}
|
||||
}
|
||||
9
PARR.DAL/Services/Interfaces/ISubprocessService.cs
Normal file
9
PARR.DAL/Services/Interfaces/ISubprocessService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces
|
||||
{
|
||||
public interface ISubprocessService : IBaseService<Subprocess>
|
||||
{
|
||||
}
|
||||
}
|
||||
9
PARR.DAL/Services/Interfaces/ITnkService.cs
Normal file
9
PARR.DAL/Services/Interfaces/ITnkService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces
|
||||
{
|
||||
public interface ITnkService : IBaseService<Tnk>
|
||||
{
|
||||
}
|
||||
}
|
||||
9
PARR.DAL/Services/Interfaces/IWorkService.cs
Normal file
9
PARR.DAL/Services/Interfaces/IWorkService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces
|
||||
{
|
||||
public interface IWorkService : IBaseService<Work>
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user