Beispiel #1
0
        protected override object GetAttribueValue(string strAttributeName)
        {
            switch (strAttributeName)
            {
            case "Ho ten":
                return(CManager.GetAttributeValue(this.Handle, "Name"));

            case "DTB":
                return(CManager.GetAttributeValue(this.Handle, "GPA"));
            }
            return(null);
        }
Beispiel #2
0
        protected override void SetAttribuleValue(string strAttributeName, object value)
        {
            switch (strAttributeName)
            {
            case "Ho ten":
                CManager.SetAttributeValue(this.Handle, "Name", value);
                break;

            case "DTB":
                CManager.SetAttributeValue(this.Handle, "GPA", value);
                break;
            }
        }
Beispiel #3
0
 public CStudent()
 {
     this.Handle = CManager.CreateRemoteObject("SStudent");
 }