Esempio n. 1
0
        public ChangeAccountableForm(Accountable accountable, ChangeDataOptions changeDataOption)
        {
            InitializeComponent();

            this.accountable      = accountable;
            this.changeDataOption = changeDataOption;

            InitializeFileds();
            InitializeButtons();

            businessLogic = new CFAPBusinessLogic(new ExceptionsHandlerUI());
        }
Esempio n. 2
0
        public ChangeProjectForm(Project project, ChangeDataOptions changeDataOption)
        {
            InitializeComponent();

            this.project          = project;
            this.changeDataOption = changeDataOption;

            InitializeFileds();
            InitializeButtons();

            businessLogic = new CFAPBusinessLogic(new ExceptionsHandlerUI());
        }
Esempio n. 3
0
        public ChangeRateForm(Rate rate, ChangeDataOptions changeDataOption)
        {
            InitializeComponent();

            this.rate             = rate;
            this.changeDataOption = changeDataOption;

            InitializeFileds();
            InitializeButtons();

            businessLogic = new CFAPBusinessLogic(new ExceptionsHandlerUI());
        }
Esempio n. 4
0
        public ChangeSummaryForm(Summary summary, ChangeDataOptions changeDataOption)
        {
            InitializeComponent();

            this.summary          = summary;
            this.changeDataOption = changeDataOption;

            InitializeFileds();
            InitializeButtons();

            businessLogic = new CFAPBusinessLogic(new ExceptionsHandlerUI());
        }
Esempio n. 5
0
        public ChangeBudgetItemForm(BudgetItem budgetItem, ChangeDataOptions changeDataOption)
        {
            InitializeComponent();

            this.budgetItem       = budgetItem;
            this.changeDataOption = changeDataOption;

            InitializeFileds();
            InitializeButtons();

            businessLogic = new CFAPBusinessLogic(new ExceptionsHandlerUI());
        }
Esempio n. 6
0
        public ChangeUserDataForm(User user, ChangeDataOptions changeDataOption)
        {
            InitializeComponent();

            this.user             = user;
            this.changeDataOption = changeDataOption;

            InitializeFileds();
            InitializeButtons();

            businessLogic = new CFAPBusinessLogic(new ExceptionsHandlerUI());
        }
Esempio n. 7
0
        public ChangeLockedPeriodForm(Period period, ChangeDataOptions changeDataOption)
        {
            InitializeComponent();

            this.period           = period;
            this.changeDataOption = changeDataOption;

            endPeriodYear = DateTime.Now.Year;

            InitializeFileds();
            InitializeButtons();

            businessLogic = new CFAPBusinessLogic(new ExceptionsHandlerUI());
        }