Exemplo n.º 1
0
        void fees_InitBeforeAdd(ref object entity)
        {
            StudentFee tmp = new StudentFee();

            tmp.IdCard = this.txtIdCard.Text.Trim();
            tmp.Name   = this.txtName.Text.Trim();
            entity     = tmp;
            //throw new Exception("The method or operation is not implemented.");
        }
Exemplo n.º 2
0
 void fees_InitBeforeAdd(ref object entity)
 {
     StudentFee tmp = new StudentFee();
     tmp.IdCard = this.txtIdCard.Text.Trim();
     tmp.Name = this.txtName.Text.Trim();
     entity = tmp;
     //throw new Exception("The method or operation is not implemented.");
 }