protected AsyncHandlerBase(
     ProjectionViewContext context,
     IMapper mapper)
 {
     Context = context;
     Mapper  = mapper;
 }
Exemplo n.º 2
0
 public QueryHandler(
     ProjectionViewContext context,
     IMapper mapper)
     : base(context, mapper)
 {
 }
Exemplo n.º 3
0
 public CommandHandler(
     ProjectionViewContext context,
     IMapper mapper)
     : base(context, mapper)
 {
 }
Exemplo n.º 4
0
 public JobsController(
     ProjectionViewContext context)
     : base(context)
 {
 }
Exemplo n.º 5
0
 public DashboardController(
     ProjectionViewContext context)
     : base(context)
 {
 }
 protected AsyncProjectionHandlerBase(
     ProjectionViewContext context,
     IMapper mapper)
     : base(context, mapper)
 {
 }
Exemplo n.º 7
0
 public EmployeesController(
     ProjectionViewContext context)
     : base(context)
 {
 }
 protected QueryHandlerBase(
     ProjectionViewContext context,
     IMapper mapper)
     : base(context, mapper)
 {
 }
Exemplo n.º 9
0
 protected ControllerBase(
     ProjectionViewContext context) => Context = context;