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