Example #1
0
 public GetReportIdArrayResult GetReportIdArray(GetReportIdArrayArg arg)
 {
     return(new GetReportIdArrayResult
     {
         ReportIdArray = new [] { 23, 666, 42 }
     });
 }
Example #2
0
        private void GetReportIdArray()
        {
            using (var service = GetFinReportService())
            {
                var arg = new GetReportIdArrayArg();
                arg.DateBegin = new DateTime(2015, 03, 01);
                arg.DateEnd   = new DateTime(2015, 03, 02);

                var result = service.GetReportIdArray(arg);
                MessageBox.Show($"result.ReportIdArray.Length = {result.ReportIdArray.Length}");
            }
        }