public AddNewConstructionStageCommandHandler(ICbmContext context)
 {
     _context = context;
 }
 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
 public SignUpCommandHandler(IPasswordService passwordService, ICbmContext context)
 {
     _passwordService = passwordService;
     _context         = context;
 }
Пример #13
0
 public CreateNotificationCommandHandler(ICbmContext context)
 {
     _context = context;
 }
Пример #14
0
 public MeQueryHandler(IAuthProvider auth, ICbmContext ctx, IMapper mapper)
 {
     _auth   = auth;
     _ctx    = ctx;
     _mapper = mapper;
 }
Пример #15
0
 public AddSupplierCommandHandler(ICbmContext ctx)
 {
     _ctx = ctx;
 }