예제 #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;
 }