Пример #1
0
        public static WebMethodInfo Convert(Cebos.Veyron.ESync.SyncDocument.WebMethodInfo webMethodInfo)
        {
            var result = new WebMethodInfo
                             {
                                 InputParams = Convert(webMethodInfo.InputParams).ToList(),
                                 OutputParams = Convert(webMethodInfo.OutputParams).ToList()
                             };


            return result;
        }
Пример #2
0
 public void PropertiesTest()
 {
     var vm = new WebMethodInfo();
     TestsHelper.TestPublicPropertiesGetSet(vm, null, true);
 }