All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 6m18s
Quote Demo v1
15 lines
293 B
C#
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();
|
|
}
|
|
}
|