コード例 #1
0
 public AddNewConstructionStageCommandHandler(ICbmContext context)
 {
     _context = context;
 }
コード例 #2
0
 public UpdateConstructionStageCommandHandler(ICbmContext context)
 {
     _context = context;
 }
コード例 #3
0
 public AddCategoryCommandHandler(ICbmContext ctx)
 {
     _ctx = ctx;
 }
コード例 #4
0
 public SignInCommandHandler(IPasswordService passwordService, IJwtHandler jwtHandler, ICbmContext context)
 {
     _passwordService = passwordService;
     _jwtHandler      = jwtHandler;
     _context         = context;
 }
コード例 #5
0
 public GetAllSuppliersQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
コード例 #6
0
 public AddExpenseCommandHandler(ICbmContext ctx)
 {
     _ctx = ctx;
 }
コード例 #7
0
 public GetAllExpensesQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
コード例 #8
0
 public MarkNotificationReadCommandHandler(IAuthProvider auth, ICbmContext context)
 {
     _auth    = auth;
     _context = context;
 }
コード例 #9
0
 public GetNewNotificationsQueryHandler(ICbmContext context, IAuthProvider authProvider, IMapper mapper)
 {
     _context      = context;
     _authProvider = authProvider;
     _mapper       = mapper;
 }
コード例 #10
0
 public GetAllConstructionStagesQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
コード例 #11
0
 public GetAllCategoriesQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
コード例 #12
0
ファイル: SignUpCommand.cs プロジェクト: rpanasewicz/iCBM
 public SignUpCommandHandler(IPasswordService passwordService, ICbmContext context)
 {
     _passwordService = passwordService;
     _context         = context;
 }
コード例 #13
0
 public CreateNotificationCommandHandler(ICbmContext context)
 {
     _context = context;
 }
コード例 #14
0
ファイル: MeQuery.cs プロジェクト: rpanasewicz/iCBM
 public MeQueryHandler(IAuthProvider auth, ICbmContext ctx, IMapper mapper)
 {
     _auth   = auth;
     _ctx    = ctx;
     _mapper = mapper;
 }
コード例 #15
0
 public AddSupplierCommandHandler(ICbmContext ctx)
 {
     _ctx = ctx;
 }