public async Task <Patient> Get([FromRoute] int id)
 {
     return(await _patientBusiness.GetPatientById(id));
 }