using AsbCloudApp.Data; using System.Collections.Generic; namespace AsbCloudApp.Services { public interface IWellService { IEnumerable GetWellsByCompany(int idCompany); IEnumerable GetTransmittingWells(int idCompany); bool IsCompanyOwnsWell(int idCompany, int wellId); IEnumerable GetStat(int wellId, int idCompany); } }