Example #1
0
 public UpdateStatusCommandHandler(IFFDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Example #2
0
 public GetAllTicketsQueryHandler(IFFDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Example #3
0
 public GetCurrentTicketQueryHandler(IFFDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Example #4
0
 public FeedbackTaskDoneCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #5
0
 public DeleteMessageCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #6
0
 public GetAllStatusesQueryHandler(IFFDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Example #7
0
 public GetPersonalMessagesQueryHandler(IFFDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Example #8
0
 public GetPersonalFriendRequestsQueryHandler(IFFDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Example #9
0
 public DeleteSpellCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #10
0
 public ConsumeCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #11
0
 public SendFriendRequestCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #12
0
 public CloseTicketCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #13
0
 public GetAllFriendsQueryHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #14
0
 public AcceptFeedbackCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #15
0
 public DeleteTopicCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #16
0
 public DeleteItemCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #17
0
 public SendFeedbackCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #18
0
 public UpdateEquipmentCommandHandler(IFFDbContext context)
     : base(context)
 {
     this.statSum = new StatSum();
 }
Example #19
0
 public CreateCommentCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #20
0
 public UpdateFightingClassCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #21
0
 public ToDoListHandler(IFFDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Example #22
0
 public DislikeCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #23
0
 public UserPanelQueryHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #24
0
 public GetPersonalFeedbacksQueryHandler(IFFDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Example #25
0
 public GetAllTopicsQueryHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #26
0
 public DeleteFeedbackCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #27
0
 public CreateFightingClassCommandHandler(IFFDbContext context)
     : base(context)
 {
     this.imagePath = new ImagePath();
 }
Example #28
0
 public BattleOptionsCommandHandler(IFFDbContext context, IMapper mapper)
     : base(context, mapper)
 {
     this.turnCheck = new TurnCheck();
 }
Example #29
0
 public LeaveLikeCommandHandler(IFFDbContext context)
     : base(context)
 {
 }
Example #30
0
 public CreateItemCommandHandler(IFFDbContext context)
     : base(context)
 {
     this.imagePath = new ImagePath();
 }