public AddNewConstructionStageCommandHandler(ICbmContext context)
 {
     _context = context;
 }
 public UpdateConstructionStageCommandHandler(ICbmContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public AddCategoryCommandHandler(ICbmContext ctx)
 {
     _ctx = ctx;
 }
Esempio n. 4
0
 public SignInCommandHandler(IPasswordService passwordService, IJwtHandler jwtHandler, ICbmContext context)
 {
     _passwordService = passwordService;
     _jwtHandler      = jwtHandler;
     _context         = context;
 }
Esempio n. 5
0
 public GetAllSuppliersQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
Esempio n. 6
0
 public AddExpenseCommandHandler(ICbmContext ctx)
 {
     _ctx = ctx;
 }
Esempio n. 7
0
 public GetAllExpensesQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
Esempio n. 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;
 }
Esempio n. 10
0
 public GetAllConstructionStagesQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
Esempio n. 11
0
 public GetAllCategoriesQueryHandler(ICbmContext ctx, IMapper mapper)
 {
     _ctx    = ctx;
     _mapper = mapper;
 }
Esempio n. 12
0
 public SignUpCommandHandler(IPasswordService passwordService, ICbmContext context)
 {
     _passwordService = passwordService;
     _context         = context;
 }
 public CreateNotificationCommandHandler(ICbmContext context)
 {
     _context = context;
 }
Esempio n. 14
0
 public MeQueryHandler(IAuthProvider auth, ICbmContext ctx, IMapper mapper)
 {
     _auth   = auth;
     _ctx    = ctx;
     _mapper = mapper;
 }
Esempio n. 15
0
 public AddSupplierCommandHandler(ICbmContext ctx)
 {
     _ctx = ctx;
 }