コード例 #1
0
 public ComentLikeCommandHandler(IWebsiteDbContext context)
 {
     _context = context;
 }
コード例 #2
0
 public EditTopicCommandHandler(IWebsiteDbContext context)
 {
     _context = context;
 }
コード例 #3
0
 public CreateTopicCommandHandler(IWebsiteDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public AddCakeCommandHandler(IWebsiteDbContext context)
 {
     this.context = context;
 }
コード例 #5
0
 public GetAllCakesQueryHandler(IWebsiteDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #6
0
 public CurrentTopicQueryHandler(IWebsiteDbContext context)
 {
     _context = context;
 }
コード例 #7
0
 public CheckOutCommandHandler(IWebsiteDbContext context)
 {
     this.context = context;
 }
コード例 #8
0
 public CustomerBalanceQueryHandler(IWebsiteDbContext context)
 {
     _context = context;
 }
コード例 #9
0
 public CustomerTopicsQueryHandler(IWebsiteDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #10
0
ファイル: CartQueryHandler.cs プロジェクト: TnS101/SoftUni
 public CartQueryHandler(IWebsiteDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
コード例 #11
0
 public EmployeesQueryHandler(IWebsiteDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #12
0
 public ClearCartCommandHandler(IWebsiteDbContext context)
 {
     this.context = context;
 }