public static bool UpdateTherapist(Therapists1 t)
 {
     return(Dal.TherapistsDal.UpdatePatient(Therapists1.Todal(t)));
 }
        public static bool Register(Therapists1 t)
        {
            Therapists therapist = Therapists1.Todal(t);

            return(Dal.TherapistsDal.Register(therapist));
        }
 //Get
 public static Therapists1 GetById(int id)
 {
     DTO.Therapists1 tt = new Therapists1(Dal.TherapistsDal.GetById(id));
     return(tt);
 }