11 lines
299 B
C#
11 lines
299 B
C#
|
|
using Domain.Entities;
|
|||
|
|
|
|||
|
|
namespace Models.Interfaces
|
|||
|
|
{
|
|||
|
|
public interface IPhLSMLookUpRepository
|
|||
|
|
{
|
|||
|
|
Task<IEnumerable<ELookUpItem>> ProductDivisionsAsync(string filter, int limit = 10);
|
|||
|
|
Task<IEnumerable<ELookUpItem>> UnitsOfMeasureAsync(string filter, int limit = 10);
|
|||
|
|
}
|
|||
|
|
}
|