phronCare/Core/Interfaces/IAdjustmentReasonDom.cs.cs
Leandro Hernan Rojas f1bc764bbf
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 6m18s
Add Adjustment, Products & Tags.
Quote Demo v1
2025-05-05 22:50:02 -03:00

15 lines
293 B
C#

using Domain.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Core.Interfaces
{
public interface IAdjustmentReasonDom
{
Task<IEnumerable<EAdjustmentReason>> GetAllActiveAsync();
}
}