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