2021-04-02 17:28:07 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IWellService
|
|
|
|
|
{
|
2021-07-21 15:22:58 +05:00
|
|
|
|
IEnumerable<WellDto> GetWellsByCompany(int idCompany);
|
|
|
|
|
IEnumerable<WellDto> GetTransmittingWells(int idCompany);
|
2021-07-29 12:39:22 +05:00
|
|
|
|
bool IsCompanyInvolvedInWell(int idCompany, int idWell);
|
2021-07-27 14:43:30 +05:00
|
|
|
|
IEnumerable<WellOperationDto> GetOperations(int idWell);
|
2021-04-02 17:28:07 +05:00
|
|
|
|
}
|
|
|
|
|
}
|