DD.WellWorkover.Cloud/AsbCloudApp/Repositories/IWellOperationCategoryRepository.cs

16 lines
463 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
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
}