Пример #1
0
 public static void CreateChildView(this ITestViewServiceBase service, string documentType, object viewModel) {
     service.CreateChildView(documentType, viewModel, null, null);
 }
Пример #2
0
 public static void CreateChildView(this ITestViewServiceBase service, string documentType, object parameter, object parentViewModel) {
     service.CreateChildView(documentType, null, parameter, parentViewModel);
 }
Пример #3
0
 public static void CreateChildView(this ITestViewServiceBase service, object viewModel) {
     service.CreateChildView(null, viewModel, null, null);
 }