2024-07-04 11:02:45 +05:00
|
|
|
using System.Collections.Generic;
|
2024-03-20 12:52:28 +05:00
|
|
|
using AsbCloudApp.Data.WellOperation;
|
2024-02-08 11:38:25 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
namespace AsbCloudApp.Repositories;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// сервис операций по скважине
|
|
|
|
/// </summary>
|
|
|
|
public interface IWellOperationCategoryRepository
|
2024-02-08 11:38:25 +05:00
|
|
|
{
|
|
|
|
/// <summary>
|
2024-08-19 10:01:07 +05:00
|
|
|
/// список названий операций
|
2024-02-08 11:38:25 +05:00
|
|
|
/// </summary>
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <returns></returns>
|
|
|
|
IEnumerable<WellOperationCategoryDto> Get(bool includeParents, bool includeHidden = true);
|
2024-02-08 11:38:25 +05:00
|
|
|
}
|