public InvoiceRadForm()
 {
     InitializeComponent();
     this.SetSizeScreen(SizeOfScreen.WIDTH, SizeOfScreen.HEIGHT);
     this._serviceInvoiceBL      = new InvoiceBL();
     this._servicePaidAccountsBL = new PaidAccountsBL();
 }
Esempio n. 2
0
 public CustomerListRadForm(RadForm parent)
 {
     InitializeComponent();
     this._serviceCustomerBL     = new CustomerBL();
     this._currentParentForm     = parent;
     this._servicePaidAccountsBL = new PaidAccountsBL();
 }
 public InvoiceNumberRadForm(RadForm form)
 {
     this._servicePaidAccountsBL = new PaidAccountsBL();
     InitializeComponent();
     this.FormBorderStyle    = FormBorderStyle.FixedSingle;
     this._currentParentForm = form;
 }
Esempio n. 4
0
 public PaidAccountsRadForm()
 {
     InitializeComponent();
     this.SetSizeScreen(SizeOfScreen.WIDTH, SizeOfScreen.HEIGHT);
     this.CustomerNameRadLabel.Text           = String.Empty;
     this.DocumentIDRadLabel.Text             = String.Empty;
     this.ProvinceAndMunicpalityRadLabel.Text = String.Empty;
     this._servicePaidAccountsBL = new PaidAccountsBL();
 }
Esempio n. 5
0
 public MainRadRibbonForm(Employee currentEmp)
 {
     InitializeComponent();
     initContext = new DBContextInitializerBL();
     this._servicePaidAccountBL = new PaidAccountsBL();
     initContext.InitDb();
     this.CurrentEmployee = currentEmp;
     GetDateTime();
     timer1.Start();
     timer2.Start();
 }
Esempio n. 6
0
 public DoingPaymentRadForm(RadForm parent)
 {
     InitializeComponent();
     this._currentParentForm     = parent;
     this._servicePaidAccountsBL = new PaidAccountsBL();
 }