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