public AddNewConstructionStageCommandHandler(ICbmContext context)
 {
     _context = context;
 }
 public UpdateConstructionStageCommandHandler(ICbmContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public AddCategoryCommandHandler(ICbmContext ctx)
 {
     _ctx = ctx;
 }
Beispiel #4
0
 public SignInCommandHandler(IPasswordService passwordService, IJwtHandler jwtHandler, ICbmContext context)
 {
     _passwordService = passwordService;
     _jwtHandler      = jwtHandler;
     _context         = context;
 }
Beispiel #5
0
 public GetAllSuppliersQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
Beispiel #6
0
 public AddExpenseCommandHandler(ICbmContext ctx)
 {
     _ctx = ctx;
 }
 public GetAllExpensesQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
Beispiel #8
0
 public MarkNotificationReadCommandHandler(IAuthProvider auth, ICbmContext context)
 {
     _auth    = auth;
     _context = context;
 }
 public GetNewNotificationsQueryHandler(ICbmContext context, IAuthProvider authProvider, IMapper mapper)
 {
     _context      = context;
     _authProvider = authProvider;
     _mapper       = mapper;
 }
Beispiel #10
0
 public GetAllConstructionStagesQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
Beispiel #11
0
 public GetAllCategoriesQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
Beispiel #12
0
 public SignUpCommandHandler(IPasswordService passwordService, ICbmContext context)
 {
     _passwordService = passwordService;
     _context         = context;
 }
 public CreateNotificationCommandHandler(ICbmContext context)
 {
     _context = context;
 }
Beispiel #14
0
 public MeQueryHandler(IAuthProvider auth, ICbmContext ctx, IMapper mapper)
 {
     _auth   = auth;
     _ctx    = ctx;
     _mapper = mapper;
 }
Beispiel #15
0
 public AddSupplierCommandHandler(ICbmContext ctx)
 {
     _ctx = ctx;
 }