feat(api): Доделал респонс RobotTaskScheduleResponse

This commit is contained in:
Mikhail Trubnikov
2023-10-11 11:10:35 +10:00
parent a4dde4c59a
commit 8ebdcd6d8a
11 changed files with 212 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
using PARR.DAL.Models;
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces
{
public interface IEsppSchTypeConfigService : IBaseService<EsppSchTypeConfig>
{
IQueryable<EsppSchTypeConfig> GetWithSchIncludes();
}
}