public IActionResult GetEmployeeMonth(int empId, int year, int month) { MonthlyReport mr = new MonthlyReport(Unit); return(Ok(mr.GetEmployeeReport(empId, year, month))); }