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