Esempio n. 1
0
 public SecurityController(JwtSettings settings, IEntityFrameworkApplicationRepository entityRepository)
 {
     _settings         = settings;
     _entityRepository = entityRepository;
 }
Esempio n. 2
0
 public CategoryController(IEntityFrameworkApplicationRepository entityRepository)
 {
     _entityRepository = entityRepository;
 }
Esempio n. 3
0
 public ProductService(IEntityFrameworkApplicationRepository entityDB)
 {
     _entityDB = entityDB;
 }