Ejemplo n.º 1
0
 public ComentLikeCommandHandler(IWebsiteDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public EditTopicCommandHandler(IWebsiteDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public CreateTopicCommandHandler(IWebsiteDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public AddCakeCommandHandler(IWebsiteDbContext context)
 {
     this.context = context;
 }
Ejemplo n.º 5
0
 public GetAllCakesQueryHandler(IWebsiteDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Ejemplo n.º 6
0
 public CurrentTopicQueryHandler(IWebsiteDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 7
0
 public CheckOutCommandHandler(IWebsiteDbContext context)
 {
     this.context = context;
 }
Ejemplo n.º 8
0
 public CustomerBalanceQueryHandler(IWebsiteDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 9
0
 public CustomerTopicsQueryHandler(IWebsiteDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Ejemplo n.º 10
0
 public CartQueryHandler(IWebsiteDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Ejemplo n.º 11
0
 public EmployeesQueryHandler(IWebsiteDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Ejemplo n.º 12
0
 public ClearCartCommandHandler(IWebsiteDbContext context)
 {
     this.context = context;
 }