コード例 #1
0
 public GetListCatalogsQueryHandler(IESVSDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #2
0
 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;
 }
コード例 #5
0
 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;
 }