Пример #1
0
        public BugHistory[] GetBugHistory(int[] bugIds)
        {
            GetBugHistoryParam args = new GetBugHistoryParam();

            args.ids = bugIds;
            GetBugHistoryResponse res = Proxy.GetHistory(args);

            return(res.bugs);
        }
Пример #2
0
 public BugHistory[] GetBugHistory(int[] bugIds)
 {
     GetBugHistoryParam args = new GetBugHistoryParam ();
     args.ids = bugIds;
     GetBugHistoryResponse res = Proxy.GetHistory (args);
     return res.bugs;
 }