public EnsureUserIsRegisteredCommandHandler(IStickerFinderDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Example #2
0
 public RemoveStickerDescriptionCommandHandler(IStickerFinderDbContext context)
 {
     this.context = context;
 }
 public GetStickerDescriptionsQueryHandler(IStickerFinderDbContext context)
 {
     this.context = context;
 }
 public DescribeStickerCommandHandler(IStickerFinderDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Example #5
0
 public FindMatchingStickersQueryHandler(IStickerFinderDbContext dbContext)
 {
     this.dbContext = dbContext;
 }