public MonitorSvc(IArticleRepo articleRepo, ICategoryRepo categoryRepo, ITagRepo tagRepo, ICommentRepo commentRepo) { _articleRepo = articleRepo; _categoryRepo = categoryRepo; _tagRepo = tagRepo; _commentRepo = commentRepo; }
public DishService(IDishRepo dish, IIngredientRepo ingredient, ITagRepo tag, ApplicationDbContext context) { dishRepo = dish; ingredientRepo = ingredient; tagRepo = tag; dishRepo.Db = context; ingredientRepo.Db = context; tagRepo.Db = context; }
public MealService(IMealRepo meal, IDishRepo dish, ITagRepo tag, ApplicationDbContext context) { mealRepo = meal; tagRepo = tag; dishRepo = dish; dishRepo.Db = context; mealRepo.Db = context; tagRepo.Db = context; }
public PetRepo( IAmazonDynamoDB client, ITagRepo tagRepo, ICategoryRepo categoryRepo ) : base(client, envVarTableName: "TABLE_NAME") { this.tagRepo = tagRepo; this.categoryRepo = categoryRepo; }
public PostController(IPostRepo repo, ITagRepo tagRepo, IMapper mapper) { _repo = repo; _mapper = mapper; _tagRepo = tagRepo; }
public TagService(ITagRepo tag) { tagRepo = tag; }
public TagController(ITagRepo repo) { this.repo = repo; }
public TagsController(NewAndNotificationContext context, ITagRepo repository, IMapper mapper) { _context = context; _repository = repository; _mapper = mapper; }
public TagService(ITagRepo tagRepo) { this.tagRepo = tagRepo; }
public TagController(ITagRepo TagRepo) { _tagRepo = TagRepo; }
public DAOFactory(ICategoryRepo categoryRepo, IArticleRepo articleRepo, ITagRepo tagRepo) { this.tagRepo = tagRepo; this.categoryRepo = categoryRepo; this.articleRepo = articleRepo; }
public DAOFactory(ICategoryRepo categoryRepo, ICompanyRepo companyRepo, ITagRepo tagRepo) { this.tagRepo = tagRepo; this.categoryRepo = categoryRepo; this.companyRepo = companyRepo; }
public TagService(ITagRepo tagrepo) { _tagrepo = tagrepo; }
public PostController(IPostRepo postrepo, ITagRepo tagrepo, IUserRepo user) { this._post = postrepo; this._tag = tagrepo; this._user = user; }
public TagSvc(ITagRepo tagRepo, IArticleTagRepo articleTagRepo) { _tagRepo = tagRepo; _articleTagRepo = articleTagRepo; }
public TagsController(ITagRepo repo) { _repo = repo; }
public SupplierSpecialCategoryController(ITagRepo repo) { _repository = repo; }
public TagsController(ITagRepo repository) { Requires.NotNull(repository); this._repository = repository; }
public CommentsController(ICommentRepo commm, ITagRepo tagrepo, IUserRepo users) { this._comm = commm; this._user = users; this._tag = tagrepo; }
public TagsController(ITagRepo <Tags> tags) { _tags = tags; }
public TagController(ITagRepo repo) { _repository = repo; }