All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 16m35s
11 lines
284 B
C#
11 lines
284 B
C#
using Domain.Entities;
|
|
|
|
namespace phronCare.UIBlazor.Services.Lookups
|
|
{
|
|
public interface IStockLookUpService
|
|
{
|
|
Task<List<ELookUpItem>> GetProductDivisionsAsync(string filter = "");
|
|
Task<List<ELookUpItem>> GetUnitsOfMeasureAsync(string filter = "");
|
|
}
|
|
}
|