Пример #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.");
        }
Пример #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.");
 }