public int GetMe(MyDemoInputDto input) { return(42); }
public int GetMe(MyDemoInputDto input) { return 42; }
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>>(); }