Example #1
0
 private void ShowInfo(int userID)
 {
     RuRo.BLL.FP_Users bll=new RuRo.BLL.FP_Users();
     RuRo.Model.FP_Users model=bll.GetModel(userID);
     this.lbluserID.Text=model.userID.ToString();
     this.lblid.Text=model.id.ToString();
     this.lblobj_id.Text=model.obj_id.ToString();
     this.lblusername.Text=model.username;
     this.lblfullname.Text=model.fullname;
     this.lblemail.Text=model.email;
     this.lblcreated_at.Text=model.created_at;
     this.lbldisabled.Text=model.disabled;
     this.lblactive.Text=model.active;
     this.lblrole.Text=model.role;
     this.lblsamples.Text=model.samples;
 }