Exemple #1
0
 public CreateUserCommandHandler(MoneysContext context)
 {
     this.context = context;
 }
Exemple #2
0
 public CreateTransactionCommandHandler(MoneysContext context)
 {
     this.context = context;
 }
 public UpdateBillCommandHandler(MoneysContext context)
 {
     this.context = context;
 }
 public GetBillsCommandHandler(IMapper mapper, MoneysContext context)
 {
     this.mapper  = mapper;
     this.context = context;
 }
 public RemoveBillCommandHandler(MoneysContext context)
 {
     this.context = context;
 }
Exemple #6
0
 public GetTransactionsCommandHandler(MoneysContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemple #7
0
 public GetTestableUserCommandHandler(IMapper mapper, MoneysContext context)
 {
     this.mapper  = mapper;
     this.context = context;
 }