Example #1
0
        public bool SaveDoctorEducation(DoctorEducationDO d)
        {
            try
            {
                _objDoctorDAL.SaveDoctorEducation(d.EducationId, d.University, d.Degree, d.CountryId, d.StateId, d.CityId, d.YearFrom, d.YearTo, d.Notes, d.DoctorId);

                return(true);
            }
            catch
            {
                return(false);
            }
        }
Example #2
0
        public bool SaveDoctorEducation(DoctorEducationDO d)
        {
            try
            {
                _objDoctorDAL.SaveDoctorEducation(d.EducationId, d.University, d.Degree, d.CountryId, d.StateId, d.CityId, d.YearFrom, d.YearTo, d.Notes, d.DoctorId);

                return true;
            }
            catch
            {
                return false;
            }
        }