фикс MockData и немного сервисов

This commit is contained in:
Mikhail Kuznetsov
2023-09-20 14:48:58 +10:00
parent f9fe762cbe
commit c04c2e1085
12 changed files with 234 additions and 231 deletions

View File

@@ -0,0 +1,9 @@
using PARR.DAL.Models;
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces
{
public interface IProcessService : IBaseService<Process>
{
}
}