Created
June 19, 2017 19:55
-
-
Save yaplex/47719124e0ec144a7aaf54409fc3179a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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