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 IEmployeeLoanService { Result> GetEmployeeLoanList(); Result DeleteEmployeeLoanById(Guid p_EmployeeLoanId, Guid p_UserId); Result GetEmployeeLoanById(Guid p_EmployeeLoanId); Result SaveEmployeeLoan(EmployeeLoans p_EmployeeLoan, Guid p_UserId); Result> LoanReport(List p_ListOfEmployeeId, bool? p_Status); } }