DD.WellWorkover.Cloud/AsbCloudApp/Services/IWellService.cs

12 lines
275 B
C#
Raw Normal View History

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