Exemplo n.º 1
0
 public SupplementController(ISupplementRepository supplementRepository, ICustomerRepository customerRepository)
 {
     _supplementRepository = supplementRepository;
     _customerRepository   = customerRepository;
 }
Exemplo n.º 2
0
 public SupplementService(IDietRepository dietRepository, ISupplementRepository supplementRepository)
 {
     _dietRepository       = dietRepository;
     _supplementRepository = supplementRepository;
 }
 public SupplementsServices(ISupplementRepository supplementRepository)
 {
     this.supplementRepository = supplementRepository;
 }
Exemplo n.º 4
0
 public TaxCalculator(IRepositoryFactory repo)
 {
     repoFactory = repo;
     taxRepo     = repo.GetTaxRepository();
     suppRepo    = repo.GetSupplementRepository();
 }
Exemplo n.º 5
0
 public SupplementController(ISupplementRepository supplementRepository)
 {
     _supplementRepository = supplementRepository;
 }
Exemplo n.º 6
0
 public SupplementHandler(ISupplementRepository supplementRepository)
 {
     _supplementRepository = supplementRepository;
 }