Esempio n. 1
0
        public IHttpActionResult Register(DTO.Patients1 p)
        {
            bool b = Bl.PatientsBl.Register(p);

            if (b == true)
            {
                return(Ok(b));
            }
            return(BadRequest("not register please try again!"));
        }
Esempio n. 2
0
 //-----------methodes => converts-----------
 public static Patients Todal(Patients1 p)
 {
     return(new Dal.Patients
     {
         PatientId = p.PatientId,
         Firstname = p.Firstname,
         Lastname = p.Lastname,
         PatientTz = p.PatientTz,
         DateOfBirth = p.DateOfBirth,
         Email = p.Email,
         Password = p.Password,
         PhoneNumber1 = p.PhoneNumber1,
         PhoneNumber2 = p.PhoneNumber2
     });
 }
Esempio n. 3
0
 public IHttpActionResult UpdatePatient(DTO.Patients1 p)
 {
     return(Ok(Bl.PatientsBl.UpdatePatient(p)));
 }
Esempio n. 4
0
 public static bool UpdatePatient(DTO.Patients1 p)
 {
     return(Dal.PatientsDal.UpdatePatient(Patients1.Todal(p)));
 }