using System.Collections.Generic;
using AsbCloudApp.Data.WellOperation;
namespace AsbCloudApp.Repositories;
///
/// сервис операций по скважине
///
public interface IWellOperationCategoryRepository
{
///
/// список названий операций
///
///
IEnumerable Get(bool includeParents, bool includeHidden = true);
}