public void ShowProfitAndLossForAccountsAnalysis(BOListAccount model)
 {
     if (IsInvalid(mFrmProfitAndLoss))
     {
         mFrmProfitAndLoss = new DacII.WinForms.Analysis.FrmPLStatement(mApplicationController, model);
     }
     SetCurrentForm(mFrmProfitAndLoss);
 }
 public void ShowAccounts(BOListAccount model)
 {
     if (IsInvalid(mFrmAccountsRegister))
     {
         mFrmAccountsRegister = new FrmAccountsRegister(mApplicationController, model);
     }
     SetCurrentForm(mFrmAccountsRegister);
 }
 public void ShowBalanceSheetForAccountsAnalysis(BOListAccount model)
 {
     if (IsInvalid(mFrmBalanceSheet))
     {
         mFrmBalanceSheet = new FrmBalanceSheet(mApplicationController, model);
     }
     SetCurrentForm(mFrmBalanceSheet);
 }
        public FrmPLStatement(ApplicationPresenter ap, BOListAccount model)
            : base(ap)
        {
            InitializeComponent();

            mModel = model;

            BindViews();
            RegisterEventHandlers();
        }
Ejemplo n.º 5
0
 public BOJobs(Accountant acc, BOContext context)
     : base(acc, context)
 {
     mObjectID         = BOType.BOAnalysisJobs;
     mListAccountModel = new BOListAccount(acc);
 }