Example #1
0
 public void LoadBudgetType(Budget obj)
 {
     if (obj.BudgetType != null)
     {
         _budgetTypeProperty = obj.BudgetType.CurrentDTO;
     }
 }
        public void InitDTO()
        {
            BudgetTypeDTO dt = new BudgetTypeDTO();

            dt.BudgetTypeID = this.BudgetTypeID;
            dt.Code         = this.Code;
            dt.Name         = this.Name;
            //LoadProperty(_currentDto, dt);
            this.CurrentDTO = dt;
        }