public Controller(IOrdersFileRepository ordersRepo, ITaxFileRepository taxRepo, IProductsFileRepository productRepo) { this.service = new Service(ordersRepo, taxRepo, productRepo); }
public Service(IOrdersFileRepository repo, ITaxFileRepository taxRepo, IProductsFileRepository productRepo) { this.repo = repo; this.taxRepo = taxRepo; this.productRepo = productRepo; }