using AsbCloudApp.Data; using System.Collections.Generic; namespace AsbCloudApp.Services { public interface IWellService { IEnumerable GetWellsByCustomer(int idCustomer); IEnumerable GetTransmittingWells(int idCustomer); } }