forked from ddrilling/AsbCloudServer
14 lines
403 B
C#
14 lines
403 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 IsCompanyOwnsWell(int idCompany, int wellId);
|
|
IEnumerable<WellSectionDto> GetStat(int wellId, int idCompany);
|
|
}
|
|
}
|