Example #1
0
 public EmployeeUpdateHandler(ClerpContext context,
                              IMapper mapper,
                              IPasswordHasher hasher)
 {
     _context = context;
     _mapper  = mapper;
     _hasher  = hasher;
 }
Example #2
0
 public EmployeeCreateHandler(
     ClerpContext context,
     ILogger <EmployeeCreateHandler> logger,
     IPasswordHasher hasher)
 {
     _context = context;
     _logger  = logger;
     _hasher  = hasher;
 }
Example #3
0
 public EmployeeLoginHandler(ClerpContext context,
                             ILogger <EmployeeLoginHandler> logger,
                             IPasswordHasher hasher,
                             IJwtTokenGenerator tokenGenerator)
 {
     _context        = context;
     _logger         = logger;
     _hasher         = hasher;
     _tokenGenerator = tokenGenerator;
 }
Example #4
0
 public EmployeeDeleteHandler(ClerpContext context)
 {
     _context = context;
 }
Example #5
0
 public RoleUpdateHandler(ClerpContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #6
0
 public DBContextTransactionPipelineBehavior(ClerpContext context)
 {
     _context = context;
 }
Example #7
0
 public ProductTypeGetAllParentsHandler(ClerpContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #8
0
 public ProductGetAllHandler(ClerpContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #9
0
 public ProductTypeDeleteHandler(ClerpContext context)
 {
     _context = context;
 }
Example #10
0
 public ProductTypeGetByIdHandler(ClerpContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #11
0
 public WarehouseGetAllHandler(ClerpContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public RoleRemoveFromEmployeeHandler(ClerpContext context)
 {
     _context = context;
 }
Example #13
0
 public RoleAddToDepartmentHandler(ClerpContext context)
 {
     _context = context;
 }
Example #14
0
 public DepartmentGetByIdHandler(ClerpContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #15
0
 public ProductTypeAddChildrenHandler(ClerpContext context)
 {
     _context = context;
 }
Example #16
0
 public RoleDeleteHandler(ClerpContext context)
 {
     _context = context;
 }
Example #17
0
 public RoleGetAllHandler(ClerpContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #18
0
 public DepartmentUpdateHandler(ClerpContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #19
0
 public EmployeeGetByIdHandler(ClerpContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #20
0
 public RoleAddToEmployeeHandler(ClerpContext context)
 {
     _context = context;
 }
Example #21
0
 public ProductTypeCreateHandler(ClerpContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #22
0
 public DepartmentDeleteHandler(ClerpContext context)
 {
     _context = context;
 }
 public DepartmentAddEmployeeHandler(ClerpContext context)
 {
     _context = context;
 }
Example #24
0
 public ProductCreateHandler(ClerpContext context)
 {
     _context = context;
 }
Example #25
0
 public ProductTypeAddParentsHandler(ClerpContext context)
 {
     _context = context;
 }
Example #26
0
 public RoleRemoveFromDepartmentHandler(ClerpContext context)
 {
     _context = context;
 }