forked from ddrilling/AsbCloudServer
15 lines
476 B
C#
15 lines
476 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IWellService
|
|
{
|
|
Task<IEnumerable<WellDto>> GetWellsByCompanyAsync(int idCompany);
|
|
Task<IEnumerable<WellDto>> GetTransmittingWellsAsync(int idCompany);
|
|
Task<bool> IsCompanyInvolvedInWellAsync(int idCompany, int idWell);
|
|
Task<IEnumerable<WellOperationDto>> GetOperationsAsync(int idWell);
|
|
}
|
|
}
|