public RepositoryForest(TechnoForestContext context)
 {
     this.context = context;
 }
 public ShoppingCartService(TechnoForestContext context, IFactory factory, IRepositoryForest repository)
 {
     this.repository = repository;
     this.context    = context;
     this.factory    = factory;
 }
 public WashingMashineRepository(TechnoForestContext context)
 {
     this.context = context;
 }
Пример #4
0
 public ProductService(TechnoForestContext context)
 {
     this.context = context;
 }
Пример #5
0
 public UserService(TechnoForestContext context, IRepositoryForest service)
 {
     this.context = context;
     this.service = service;
 }
Пример #6
0
 public UserRepository(TechnoForestContext context)
 {
     this.context = context;
 }
Пример #7
0
 public MobilePhoneRepository(TechnoForestContext context)
 {
     this.context = context;
 }