public GetListCatalogsQueryHandler(IESVSDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public AddFieldValueCommandHandler(IESVSDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public UpdateCatalogCommandHandler(IESVSDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public GetFieldQueryHandler(IESVSDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public DeleteFieldCommandHandler(IESVSDbContext context) =>
public CreateFieldCommandHandler(IESVSDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public DeleteCatalogCommandHandler(IESVSDbContext context) =>
public CreateTypeCommandHandler(IMapper mapper, IESVSDbContext context) { _mapper = mapper; _context = context; }