public SecurityController(JwtSettings settings, IEntityFrameworkApplicationRepository entityRepository) { _settings = settings; _entityRepository = entityRepository; }
public CategoryController(IEntityFrameworkApplicationRepository entityRepository) { _entityRepository = entityRepository; }
public ProductService(IEntityFrameworkApplicationRepository entityDB) { _entityDB = entityDB; }