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 GetSections(int wellId); object GetOperations(int wellId); } }