Example #1
0
 public int GetMe(MyDemoInputDto input)
 {
     return(42);
 }
 public int GetMe(MyDemoInputDto input)
 {
     return 42;
 }
Example #3
0
 public List <ProductDto> MyTest1(MyDemoInputDto input)
 {
     //throw new UserFriendlyException("just testing...");
     return(_productRepository.GetAll().ToList().MapTo <List <ProductDto> >());
 }
 public List<ProductDto> MyTest1(MyDemoInputDto input)
 {
     //throw new UserFriendlyException("just testing...");
     return _productRepository.GetAll().ToList().MapTo<List<ProductDto>>();
 }