Beispiel #1
0
 public GrantRevokePermissionsCommandHandler(IEmail email, IMapper mapper, UrbanDbContext context, ISession session)
 {
     _email   = email;
     _context = context;
     _mapper  = mapper;
     _session = session;
 }
Beispiel #2
0
 public GetDepartmentsQueryHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public EditPermissionTemplateCommandHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public RemovePositionCommandHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public DashboardProjection(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public ApproverActivityProjection(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public SystemActivityProjection(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public GetUserDetailByIdQueryHandler(UrbanDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #9
0
 public GetLoginUsersQueryHandler(UrbanDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #10
0
 public GetApproverActivityProjectionQueryHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #11
0
 public EventStore(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #12
0
 public CreatePositionCommandHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #13
0
 public CreateDepartmentCommandHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #14
0
 public UserManagementProjection(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #15
0
 public SystemDropdownProjection(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #16
0
 public GetApproverListQueryHandler(UrbanDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #17
0
 public UserHistoryProjection(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #18
0
 public GetAllPositionsQueryHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #19
0
 public PendingRequestsProjection(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #20
0
 public GetPendingRequestsProjectionQueryHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #21
0
 public PermissionDetailProjection(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #22
0
 public GetOffboardUserPermissionsQueryHandler(UrbanDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #23
0
 public GetUserHistoryQueryHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #24
0
 public GetUserCollectionQueryHandler(UrbanDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #25
0
 public GetPositionsByDepartmentNameQueryHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #26
0
 public GetPendingRequestsByIdQueryHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #27
0
 public RemoveDepartmentByNameCommandHandler(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #28
0
 public GetSystemActivityReportQueryHandler(UrbanDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #29
0
 public UserDetailProjection(UrbanDbContext context)
 {
     _context = context;
 }
Beispiel #30
0
 public GetSystemDropDownProjectionQueryHandler(UrbanDbContext context)
 {
     _context = context;
 }