Exemplo n.º 1
0
 public FeedRepository(TiriritDbContext dbContext,
                       ITiriritPostRepository tiriritPostRepository,
                       ICurrentPrincipal currentPrincipal)
 {
     this.dbContext        = dbContext;
     this.currentPrincipal = currentPrincipal;
 }
Exemplo n.º 2
0
 public DeletPostCommandHandler(TiriritDbContext dbContext, IHashTagRepository hashTagRepository, ITiriritPostRepository postRepository, IStockRepository stockRepository)
 {
     this.dbContext         = dbContext;
     this.hashTagRepository = hashTagRepository;
     this.postRepository    = postRepository;
     this.stockRepository   = stockRepository;
 }
Exemplo n.º 3
0
 public StockRepository(TiriritDbContext dbContext,
                        ITiriritPostRepository postRepository,
                        ICurrentPrincipal currentPrincipal)
 {
     this.dbContext        = dbContext;
     this.postRepository   = postRepository;
     this.currentPrincipal = currentPrincipal;
 }
Exemplo n.º 4
0
 public LikeDislikeCommandHandler(ITiriritPostRepository postRepository, ICurrentPrincipal currentPrincipal)
 {
     this.postRepository   = postRepository;
     this.currentPrincipal = currentPrincipal;
 }