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; }
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; }
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; }
public CompanyService(IBillsSystemContext billsSystemContext) { this.billsSystemContext = billsSystemContext; }
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; }