Exemplo n.º 1
0
 public void PrintInvoice()
 {
     ShowReport(ReportInfoFactory.SalesInvoice(SelectedEntity), "Invoice");
 }
Exemplo n.º 2
0
 public override void OnLoaded()
 {
     base.OnLoaded();
     this.GetRequiredService <IReportService>().ShowReport(ReportInfoFactory.SalesInvoice(Entity));
 }
Exemplo n.º 3
0
 protected override void OnSelectedEntityChanged()
 {
     base.OnSelectedEntityChanged();
     SetDefaultReport(ReportInfoFactory.SalesInvoice(SelectedEntity));
 }