Skip to content

Instantly share code, notes, and snippets.

@yaplex
Created June 19, 2017 19:55
Show Gist options
  • Select an option

  • Save yaplex/47719124e0ec144a7aaf54409fc3179a to your computer and use it in GitHub Desktop.

Select an option

Save yaplex/47719124e0ec144a7aaf54409fc3179a to your computer and use it in GitHub Desktop.
public class ProductBL
{
private readonly ProductDAL dal;
public ProductBL(ProductDAL dal)
{
this.dal = dal;
}
public List<Product> GetProducts()
{
// Get products, make some manipulation with the products,
// e.g. sorting, filtering...
return dal.GetProducts();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment