Esempio n. 1
0
        public HorizontalIntegrationReportFormController(HorizontalIntegrationReportForm frmHorizontalIntegration)
            : base(frmHorizontalIntegration)
        {
            this.frmHorizontalIntegration = frmHorizontalIntegration;

            this.srvERPCustomer    = SamsaraAppContext.Resolve <IERPCustomerService>();
            this.srvProductSubline = SamsaraAppContext.Resolve <IProductSublineService>();
            this.srvProductFamily  = SamsaraAppContext.Resolve <IProductFamilyService>();

            this.InitializeFormControls();
        }
Esempio n. 2
0
 private void coberturaHorizontalToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         HorizontalIntegrationReportForm frmHorizontalIntegrationReport = new HorizontalIntegrationReportForm();
         frmHorizontalIntegrationReport.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }