示例#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;
 }