public ShoppingCartService(TechnoForestContext context, IFactory factory, IRepositoryForest repository)
 {
     this.repository = repository;
     this.context    = context;
     this.factory    = factory;
 }
Esempio n. 2
0
 public UserService(TechnoForestContext context, IRepositoryForest service)
 {
     this.context = context;
     this.service = service;
 }