Exemplo n.º 1
0
 public Controller(IOrdersFileRepository ordersRepo, ITaxFileRepository taxRepo, IProductsFileRepository productRepo)
 {
     this.service = new Service(ordersRepo, taxRepo, productRepo);
 }
Exemplo n.º 2
0
 public Service(IOrdersFileRepository repo, ITaxFileRepository taxRepo, IProductsFileRepository productRepo)
 {
     this.repo        = repo;
     this.taxRepo     = taxRepo;
     this.productRepo = productRepo;
 }