public ComplexModelViewModel Get(ComplexModelInputModel input)
 {
     return(new ComplexModelViewModel {
         TestString = "Test String"
     });
 }
 public ComplexModelViewModel Get(ComplexModelInputModel input)
 {
     return new ComplexModelViewModel { TestString = "Test String" };
 }