| c# Programming Glossary: getproductServiceStack Request DTO design http://stackoverflow.com/questions/15927475/servicestack-request-dto-design  Product GetAllProducts return products public Product GetProductById int id var product products.FirstOrDefault p p.Id id if.. HttpStatusCode.NotFound  return product public Product GetProductByName string categoryName var product products.FirstOrDefault..  return product public IEnumerable Product GetProductsByCategory string category return products.Where p string.Equals.. 
 Method Overloading. Can you overuse it? http://stackoverflow.com/questions/248222/method-overloading-can-you-overuse-it  pulling from a database explicit way public List Product GetProduct int productId return a List public List Product GetProductByCategory.. GetProduct int productId return a List public List Product GetProductByCategory Category category return a List public List Product.. Category category return a List public List Product GetProductByName string Name return a List overloaded way public List Product.. 
 |