public async Task <IActionResult> PutDoctors([FromRoute] int id, [FromBody] Doctors doctors) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != doctors.DoctorID) { return(BadRequest()); } _context.Entry(doctors).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DoctorsExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutSpecialization([FromRoute] int id, [FromBody] Specialization specialization) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != specialization.SpecID) { return(BadRequest()); } _context.Entry(specialization).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!SpecializationExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutMedical_Enterprise([FromRoute] int id, [FromBody] Medical_Enterprise medical_Enterprise) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != medical_Enterprise.MedID) { return(BadRequest()); } _context.Entry(medical_Enterprise).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!Medical_EnterpriseExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }