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