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 IAllowanceService { Result> GetAllowanceList(); Result DeleteAllowanceById(Guid p_AllowanceId, Guid p_UserId); Result GetAllowanceById(Guid p_AllowanceId); Result SaveAllowance(Allowance p_Allowance, Guid p_UserId); } }