Пример #1
0
 public GetListCatalogsQueryHandler(IESVSDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public AddFieldValueCommandHandler(IESVSDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #3
0
 public UpdateCatalogCommandHandler(IESVSDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #4
0
 public GetFieldQueryHandler(IESVSDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public DeleteFieldCommandHandler(IESVSDbContext context) =>
Пример #6
0
 public CreateFieldCommandHandler(IESVSDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #7
0
 public DeleteCatalogCommandHandler(IESVSDbContext context) =>
Пример #8
0
 public CreateTypeCommandHandler(IMapper mapper, IESVSDbContext context)
 {
     _mapper  = mapper;
     _context = context;
 }