Exemplo n.º 1
0
 public CreateUserCommandHandler(MoneysContext context)
 {
     this.context = context;
 }
Exemplo n.º 2
0
 public CreateTransactionCommandHandler(MoneysContext context)
 {
     this.context = context;
 }
Exemplo n.º 3
0
 public UpdateBillCommandHandler(MoneysContext context)
 {
     this.context = context;
 }
Exemplo n.º 4
0
 public GetBillsCommandHandler(IMapper mapper, MoneysContext context)
 {
     this.mapper  = mapper;
     this.context = context;
 }
Exemplo n.º 5
0
 public RemoveBillCommandHandler(MoneysContext context)
 {
     this.context = context;
 }
Exemplo n.º 6
0
 public GetTransactionsCommandHandler(MoneysContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemplo n.º 7
0
 public GetTestableUserCommandHandler(IMapper mapper, MoneysContext context)
 {
     this.mapper  = mapper;
     this.context = context;
 }