feat(dal): Добавлена таблица WorkGroups и AppInWorkGroups
This commit is contained in:
10
PARR.DAL/Services/Interfaces/IWorkGroupService.cs
Normal file
10
PARR.DAL/Services/Interfaces/IWorkGroupService.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces
|
||||
{
|
||||
public interface IWorkGroupService : IBaseService<WorkGroup>
|
||||
{
|
||||
Task<WorkGroup?> GetByNameAsync(string name);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user