forked from ddrilling/AsbCloudServer
23 lines
807 B
C#
23 lines
807 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using AsbCloudApp.Data.ProcessMap;
|
|||
|
using AsbCloudApp.Services;
|
|||
|
|
|||
|
namespace AsbCloudApp.Repositories;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Репозиторий для проработки скважины
|
|||
|
/// </summary>
|
|||
|
public interface IProcessMapWellboreDevelopmentRepository : IRepositoryWellRelated<ProcessMapWellboreDevelopmentDto>
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Получить проработку начиная с даты
|
|||
|
/// </summary>
|
|||
|
/// <param name="idWell"></param>
|
|||
|
/// <param name="updateFrom"></param>
|
|||
|
/// <param name="cancellationToken"></param>
|
|||
|
/// <returns></returns>
|
|||
|
Task<IEnumerable<ProcessMapWellboreDevelopmentDto>> GetAllAsync(int idWell, DateTime? updateFrom, CancellationToken cancellationToken);
|
|||
|
}
|