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