phronCare/Models/Interfaces/IPhLSMLookUpRepository.cs
Leandro Hernan Rojas 1be33c37b5
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 16m35s
Add Products
2025-06-30 16:15:08 -03:00

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);
}
}