public MedicalPractionerPersonalDetailsPage(GeneralDetails GD)
        {
            InitializeComponent();
            this.GD = GD;
            _Gender.Items.Add("Male");
            _Gender.Items.Add("Female");
            _Gender.SelectedIndex = 0;

            _BloodGroup.Items.Add("A-");
            _BloodGroup.Items.Add("A+");
            _BloodGroup.Items.Add("B-");
            _BloodGroup.Items.Add("B+");
            _BloodGroup.Items.Add("O-");
            _BloodGroup.Items.Add("O+");
            _BloodGroup.Items.Add("AB-");
            _BloodGroup.Items.Add("AB+");

            _BloodGroup.SelectedIndex = 0;

            _State.Items.Add("Abia");
            _State.Items.Add("Enugu");
            _State.Items.Add("Imo");
            _State.SelectedIndex = 0;

            MedicalCategoriesController.LoadMedicalCategoriesToList(_MedCategory);
            _MedCategory.SelectedIndex = 0;

            NavigationPage.SetHasNavigationBar(this, false);
        }
        public UserPersonalDetailsPage(GeneralDetails GD)
        {
            InitializeComponent();
            this.GD = GD;

            _Gender.Items.Add("Male");
            _Gender.Items.Add("Female");
            _Gender.SelectedIndex = 0;

            _BloodGroup.Items.Add("A-");
            _BloodGroup.Items.Add("A+");
            _BloodGroup.Items.Add("B-");
            _BloodGroup.Items.Add("B+");
            _BloodGroup.Items.Add("O-");
            _BloodGroup.Items.Add("O+");
            _BloodGroup.Items.Add("AB-");
            _BloodGroup.Items.Add("AB+");

            _BloodGroup.SelectedIndex = 0;

            _State.Items.Add("Abia");
            _State.Items.Add("Enugu");
            _State.Items.Add("Imo");
            _State.SelectedIndex = 0;

            NavigationPage.SetHasNavigationBar(this, false);
        }
 public OTPPage(GeneralDetails GD)
 {
     InitializeComponent();
     this.GD = GD;
     _VerificationEntry1.Focus();
     ResendOTPCountDown(60 * ResendOTPCounter);
 }
 public OTPData(String OTPCode1, String OTPCode2, String OTPCode3, String OTPCode4, GeneralDetails GD)
 {
     this.OTPCode1 = OTPCode1;
     this.OTPCode2 = OTPCode2;
     this.OTPCode3 = OTPCode3;
     this.OTPCode4 = OTPCode4;
     this.GD       = GD;
 }
 public UserPersonalDetails(GeneralDetails GD, String Fullname, String Username, String Gender, String BloodGroup, String Address, String DOB)
 {
     this.Fullname   = Fullname;
     this.Username   = Username;
     this.Gender     = Gender;
     this.BloodGroup = BloodGroup;
     this.Address    = Address;
     this.DOB        = DOB;
     this.GD         = GD;
 }
 public HealthPractionerPersonalDetails(GeneralDetails GD, String Fullname, String Username, String Gender, String BloodGroup, String Address, String DOB, String Field, String BioData)
 {
     this.Fullname   = Fullname;
     this.Username   = Username;
     this.Gender     = Gender;
     this.BloodGroup = BloodGroup;
     this.Address    = Address;
     this.DOB        = DOB;
     this.GD         = GD;
     this.Field      = Field;
     this.BioData    = BioData;
 }