public async Task <ActionResult <double> > GetEmployeeCost(int id)
 {
     return(await calculatorService.CalculateEmployeePayrollAsync(id));
 }