forked from ddrilling/AsbCloudServer
ba94db08b0
1. Сделан один общий репозиторий для РТК план 2. Переименованы поля 3. Добавил регитсрацию зависимостей
32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
using System.Collections.Generic;
|
||
using System.Threading.Tasks;
|
||
using System.Threading;
|
||
using AsbCloudApp.Data.ProcessMaps;
|
||
using AsbCloudApp.Requests;
|
||
using AsbCloudApp.Services;
|
||
|
||
namespace AsbCloudApp.Repositories;
|
||
|
||
/// <summary>
|
||
/// РТК план
|
||
/// </summary>
|
||
public interface IProcessMapPlanRepository<TDto> : IRepositoryWellRelated<TDto>
|
||
where TDto : ProcessMapPlanBaseDto
|
||
{
|
||
/// <summary>
|
||
/// Получить РТК по коллекции параметров
|
||
/// </summary>
|
||
/// <param name="requests"></param>
|
||
/// <param name="cancellationToken"></param>
|
||
/// <returns></returns>
|
||
Task<IEnumerable<TDto>> GetAsync(IEnumerable<ProcessMapPlanRequest> requests, CancellationToken cancellationToken);
|
||
|
||
/// <summary>
|
||
/// Удалить РТК по скважине
|
||
/// </summary>
|
||
/// <param name="idWell"></param>
|
||
/// <param name="cancellationToken"></param>
|
||
/// <returns></returns>
|
||
Task<int> RemoveByWellAsync(int idWell, CancellationToken cancellationToken);
|
||
}
|