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