public ActionResult CreateDoctorShedule(DoctorShedule doctorShedule)
 {
     _repo.CreateDoctorShedule(doctorShedule);
     return(NoContent());
 }
Example #2
0
 public void CreateDoctorShedule(DoctorShedule DoctorShedule)
 {
     _context.DoctorShedule.Add(DoctorShedule);
     _context.SaveChanges();
 }