forked from ddrilling/AsbCloudServer
11 lines
208 B
C#
11 lines
208 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IWellService
|
|
{
|
|
IEnumerable<WellDto> GetWellsByCustomer(int idCustomer);
|
|
}
|
|
}
|