Exemplo n.º 1
0
 public MonitorSvc(IArticleRepo articleRepo, ICategoryRepo categoryRepo, ITagRepo tagRepo, ICommentRepo commentRepo)
 {
     _articleRepo  = articleRepo;
     _categoryRepo = categoryRepo;
     _tagRepo      = tagRepo;
     _commentRepo  = commentRepo;
 }
Exemplo n.º 2
0
 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;
 }
Exemplo n.º 3
0
 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;
 }
Exemplo n.º 4
0
 public PetRepo(
     IAmazonDynamoDB client,
     ITagRepo tagRepo,
     ICategoryRepo categoryRepo
     ) : base(client, envVarTableName: "TABLE_NAME")
 {
     this.tagRepo      = tagRepo;
     this.categoryRepo = categoryRepo;
 }
Exemplo n.º 5
0
 public PostController(IPostRepo repo, ITagRepo tagRepo, IMapper mapper)
 {
     _repo    = repo;
     _mapper  = mapper;
     _tagRepo = tagRepo;
 }
Exemplo n.º 6
0
 public TagService(ITagRepo tag)
 {
     tagRepo = tag;
 }
Exemplo n.º 7
0
 public TagController(ITagRepo repo)
 {
     this.repo = repo;
 }
Exemplo n.º 8
0
 public TagsController(NewAndNotificationContext context, ITagRepo repository, IMapper mapper)
 {
     _context    = context;
     _repository = repository;
     _mapper     = mapper;
 }
Exemplo n.º 9
0
 public TagService(ITagRepo tagRepo)
 {
     this.tagRepo = tagRepo;
 }
Exemplo n.º 10
0
 public TagController(ITagRepo TagRepo)
 {
     _tagRepo = TagRepo;
 }
Exemplo n.º 11
0
 public DAOFactory(ICategoryRepo categoryRepo, IArticleRepo articleRepo, ITagRepo tagRepo)
 {
     this.tagRepo      = tagRepo;
     this.categoryRepo = categoryRepo;
     this.articleRepo  = articleRepo;
 }
Exemplo n.º 12
0
 public DAOFactory(ICategoryRepo categoryRepo, ICompanyRepo companyRepo, ITagRepo tagRepo)
 {
     this.tagRepo      = tagRepo;
     this.categoryRepo = categoryRepo;
     this.companyRepo  = companyRepo;
 }
Exemplo n.º 13
0
 public TagService(ITagRepo tagrepo)
 {
     _tagrepo = tagrepo;
 }
Exemplo n.º 14
0
 public PostController(IPostRepo postrepo, ITagRepo tagrepo, IUserRepo user)
 {
     this._post = postrepo;
     this._tag  = tagrepo;
     this._user = user;
 }
Exemplo n.º 15
0
 public TagSvc(ITagRepo tagRepo, IArticleTagRepo articleTagRepo)
 {
     _tagRepo        = tagRepo;
     _articleTagRepo = articleTagRepo;
 }
Exemplo n.º 16
0
 public TagsController(ITagRepo repo)
 {
     _repo = repo;
 }
 public SupplierSpecialCategoryController(ITagRepo repo)
 {
     _repository = repo;
 }
Exemplo n.º 18
0
 public TagsController(ITagRepo repository)
 {
     Requires.NotNull(repository);
     this._repository = repository;
 }
Exemplo n.º 19
0
 public CommentsController(ICommentRepo commm, ITagRepo tagrepo, IUserRepo users)
 {
     this._comm = commm;
     this._user = users;
     this._tag  = tagrepo;
 }
Exemplo n.º 20
0
 public TagsController(ITagRepo <Tags> tags)
 {
     _tags = tags;
 }
Exemplo n.º 21
0
 public TagController(ITagRepo repo)
 {
     _repository = repo;
 }