feat(api, dal): EsppScheduleTypeScheduleController. В таблицу EsppScheTypeValue добавлено поле Order

This commit is contained in:
Mikhail Trubnikov
2024-04-08 12:16:14 +10:00
parent 7be64e3529
commit 0ddd7bc9d2
12 changed files with 3566 additions and 86 deletions

View File

@@ -0,0 +1,10 @@
using PARR.DAL.Models;
namespace PARR.DAL.Services.Interfaces
{
public interface IEsppSchTypeScheduleService
{
IQueryable<EsppSchTypeSchedule> Get();
Task<EsppSchTypeSchedule?> GetAsync(int id);
}
}