Example #1
0
 public BidderFormController(BidderForm instance)
 {
     this.frmBidder     = instance;
     this.srvBidder     = SamsaraAppContext.Resolve <IBidderService>();
     this.srvBidderType = SamsaraAppContext.Resolve <IBidderTypeService>();
     this.InitializeFormControls();
 }
Example #2
0
 private void licitanteToolStripMenuItem_Click(object sender, System.EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         BidderForm frmBidder = new BidderForm();
         frmBidder.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }