Exemplo n.º 1
0
        private void GetReport()
        {
            using (var service = GetFinReportService())
            {
                var arg = new GetReportArg();
                arg.ReportId = 45;

                var result = service.GetReport(arg);
                MessageBox.Show($"result.Report.Info = \"{result.Report.Info}\"");
            }
        }
Exemplo n.º 2
0
 public GetReportResult GetReport(GetReportArg arg)
 {
     return(new GetReportResult
     {
         Report = new FinReport
         {
             ReportID = arg.ReportID,
             Date = new DateTime(2015, 03, 15),
             Info = "ByWSDL"
         }
     });
 }