Ejemplo n.º 1
0
 public Handler(IClothesyDb context, IMediator mediator)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public CreateClothesCommandHandler(IClothesyDb context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public GetClothesByIdHandler(IClothesyDb context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public UpdateClothingCommandHandler(IClothesyDb context)
 {
     _context = context;
 }
Ejemplo n.º 5
0
 public Handler(IClothesyDb context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public BaseController(IClothesyDb context)
 {
     Context = context;
 }
Ejemplo n.º 7
0
 public DeleteTripHandler(IClothesyDb context)
 {
     _context = context;
 }