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

17 lines
512 B
C#
Raw Normal View History

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