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 ILookupService { Result> GetAllFinancialYear(); Result> GetAllEmployeeByDepartmentId(Guid p_DepartmentId); Result> GetAllActiveEmployeeByDepartmentId(Guid p_DepartmentId); Result> GetAllCountry(); Result> GetAllStateByCountryId(Guid p_CountryId); Result> GetAllEmployeeType(); Result> GetAllDepartment(); Result> GetAllDesignation(); Result> GetAllEmployeeGrade(); Result> GetAllShift(); Result> GetAllUnAssignSalaryEmployeeByDepartmentId(Guid p_DepartmentId); Result> GetAllLeaveCategory(); Result> GetSalaryChartDetailsByEmployeeId(Guid p_EmployeeId, Guid p_FinancialYearId); Result> GetAllActiveEmployee(); Result> GetSalaryChartInfoForAllEmployee(Guid p_p_FinancialYearId); Result> GetAllEducation(); } }