public SecurityController(JwtSettings settings, IEntityFrameworkApplicationRepository entityRepository)
 {
     _settings         = settings;
     _entityRepository = entityRepository;
 }
Exemple #2
0
 public CategoryController(IEntityFrameworkApplicationRepository entityRepository)
 {
     _entityRepository = entityRepository;
 }
Exemple #3
0
 public ProductService(IEntityFrameworkApplicationRepository entityDB)
 {
     _entityDB = entityDB;
 }