forked from ddrilling/AsbCloudServer
17 lines
509 B
C#
17 lines
509 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);
|
|
}
|
|
} |