forked from ddrilling/AsbCloudServer
16 lines
463 B
C#
16 lines
463 B
C#
using System.Collections.Generic;
|
|
using AsbCloudApp.Data.WellOperation;
|
|
|
|
namespace AsbCloudApp.Repositories;
|
|
|
|
/// <summary>
|
|
/// сервис операций по скважине
|
|
/// </summary>
|
|
public interface IWellOperationCategoryRepository
|
|
{
|
|
/// <summary>
|
|
/// список названий операций
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
IEnumerable<WellOperationCategoryDto> Get(bool includeParents, bool includeHidden = true);
|
|
} |