using ERP.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ERP.Dal.Interface { public interface IDeductionService { Result> GetDeductionList(); Result DeleteDeductionById(Guid p_DeductionId, Guid p_UserId); Result GetDeductionById(Guid p_DeductionId); Result SaveDeduction(Deduction p_Deduction, Guid p_UserId); } }