forked from ddrilling/AsbCloudServer
15 lines
463 B
C#
15 lines
463 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IWellService
|
|
{
|
|
IEnumerable<WellDto> GetWellsByCompany(int idCompany);
|
|
IEnumerable<WellDto> GetTransmittingWells(int idCompany);
|
|
bool IsCompanyInvolvedInWell(int idCompany, int idWell);
|
|
IEnumerable<WellSectionDto> GetSections(int idWell);
|
|
IEnumerable<WellOperationDto> GetOperations(int idWell);
|
|
}
|
|
}
|