コード例 #1
0
ファイル: FormBudgetDetails.cs プロジェクト: tborgund/kgsa
        public FormBudgetDetails(AppSettings app, BudgetObj bud, int id)
        {
            this.appConfig = app;
            this.budget = bud;
            this.budgetId = id;
            InitializeComponent();

            budget.UpdateBudgetSelgerkoder(budgetId);
            budgetInfo = budget.GetBudgetInfo(budgetId);

            SetUI();

            RefreshDataGridView();
        }
コード例 #2
0
ファイル: VelgDato.cs プロジェクト: tborgund/kgsa
 public VelgDato(AppSettings app)
 {
     this.appConfig = app;
     InitializeComponent();
 }