Esempio n. 1
0
        private void setGender(ref DoctorDetails frm, int value)
        {
            switch (value)
            {
            case 1:
                frm.rdoMale.Checked = true;
                break;

            case 2:
                frm.rdoFemale.Checked = true;
                break;

            case 3:
                frm.rdoTransGender.Checked = true;
                break;

            default:
                break;
            }
        }
Esempio n. 2
0
        private void btnNew_Click(object sender, EventArgs e)
        {
            try
            {
                DoctorDetails frm = new DoctorDetails();
                frm.ShowDialog();

                if (isSubmited)
                {
                    Search();
                }

                isSubmited = false;
            }
            catch (Exception ex)
            {
                isSubmited = false;
                Utility.ErrorLog.Logging("Doctor List", ex.Message.ToString(), ex.StackTrace.ToString());
            }
        }
Esempio n. 3
0
        private void FillFormData(Guid?id)
        {
            try
            {
                DoctorDetailModel model = service.GetById(id.Value);
                if (model != null)
                {
                    DoctorDetails frm = new DoctorDetails(model.Id);
                    if (model.FullName.ToUpper() == "SIR" || model.FullName.ToUpper() == "MADAM")
                    {
                        frm.txtFullName.ReadOnly = true;
                    }
                    frm.txtFullName.Text      = model.FullName;
                    frm.txtAddress.Text       = model.Address;
                    frm.txtMobileNumber.Text  = model.MobileNumber;
                    frm.txtPhoneNumber.Text   = model.PhoneNumber;
                    frm.txtQualification.Text = model.Qualification;
                    frm.txtClinic.Text        = model.ClinicName;
                    frm.txtClinicContact.Text = model.ClinicContact;
                    frm.txtAge.Text           = Convert.ToString(model.Age);
                    frm.chkConsultant.Checked = model.IsCounsalting.HasValue ? model.IsCounsalting.Value : false;
                    frm.chkInHouse.Checked    = model.IsInHouse.HasValue ? model.IsInHouse.Value : false;
                    setGender(ref frm, model.Gender.Value);
                    frm.ShowDialog();
                    if (isSubmited)
                    {
                        Search();
                    }

                    isSubmited = false;
                }
            }
            catch (Exception ex)
            {
                isSubmited = false;
                Utility.ErrorLog.Logging("Doctor List", ex.Message.ToString(), ex.StackTrace.ToString());
            }
        }