Beispiel #1
0
        private void information()
        {
            var profiles_informations = Profiles_informations.Search_Profile(Profile_information.Id);

            Lbl_User_name_profile_information.Text = profiles_informations.user_name;
            Lbl_full_name_profile_information.Text = profiles_informations.name + " " + profiles_informations.last_name;
            Lbl_ema_profile_information.Text       = profiles_informations.email;
        }
Beispiel #2
0
 private void Btn_password_change_Click(object sender, EventArgs e)
 {
     Profiles_informations.Update_Profile(Profile_information.Id, Txt_new_password.Text, Txt_new_password_confirmation.Text);
 }
Beispiel #3
0
        private void Profile()
        {
            var profile = Profiles_informations.Search_Profile(Profile_information.Id);

            Lbl_Profil.Text = profile.user_name;
        }