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