Esempio n. 1
0
        public SumaFacturasPresenter(ISumaFacturasView view, IBillsSystemContext billsSystemContext, IBillService billService, ICompanyService companyService, ISumBillsService sumBillsService)
            : base(view, billsSystemContext, billService, companyService)
        {
            this.sumBillsService = sumBillsService;

            this.View.OnListView1_GetData += View_OnListView1_GetData;
        }
 public PresenterCommun(T view, IBillsSystemContext billsSystemContext, IBillService billService, ICompanyService companyService)
     : base(view)
 {
     this.billsSystemContext = billsSystemContext;
     this.billService        = billService;
     this.companyService     = companyService;
 }
Esempio n. 3
0
 public InsertarEmpresaPresenter(IInsertarEmpresaView view, IBillsSystemContext billsSystemContext, IBillService billService, ICompanyService companyService)
     : base(view, billsSystemContext, billService, companyService)
 {
     this.View.OnInsertCompany    += View_OnInsertCompany;
     this.View.OnServerValidation += View_OnServerValidation;
 }
 public ListaEmpresasPresenter(IListaEmpresasView view, IBillsSystemContext billsSystemContext, IBillService billService, ICompanyService companyService)
     : base(view, billsSystemContext, billService, companyService)
 {
     this.View.OnListView1_GetData    += View_OnListView1_GetData;
     this.View.OnListView1_UpdateItem += View_OnListView1_UpdateItem;
 }
Esempio n. 5
0
 public BillService(IBillsSystemContext billsSystemContext, ICompanyService companyService)
 {
     this.billsSystemContext = billsSystemContext;
     this.companyService     = companyService;
 }
 public InsertarFacturaPresenter(IInsertarFacturaView view, IBillsSystemContext billsSystemContext, IBillService billService, ICompanyService companyService)
     : base(view, billsSystemContext, billService, companyService)
 {
     this.View.OnSubmitProcess    += View_OnSubmitProcess;
     this.View.OnServerValidation += View_OnServerValidation;
 }
Esempio n. 7
0
 public CompanyService(IBillsSystemContext billsSystemContext)
 {
     this.billsSystemContext = billsSystemContext;
 }
Esempio n. 8
0
 public ListaFacturasPresenter(IListaFacturasView view, IBillsSystemContext billSystemContext, IBillService billService, ICompanyService companyService)
     : base(view, billSystemContext, billService, companyService)
 {
     this.View.OnListView1_GetData   += View_OnListView1_GetData;
     this.View.OnButonEliminar_Click += View_OnButonEliminar_Click;
 }