Esempio n. 1
0
 public async Task <IActionResult> GetAllEmployeeById(int Id)
 {
     try
     {
         return(Ok(await _IEmployeeLogic.GetById(Id)));
     }
     catch (Exception ex)
     {
         return(BadRequest(ex));
     }
 }