public UpsertCategoryTypeCommandHandler(IRangenDbContext context) { _context = context; }
public DeleteRelationTypeCommandHandler(IRangenDbContext context) { _context = context; }
public Handler(IRangenDbContext context) { _context = context; }
public DeleteGenericOccurrenceCommandHandler(IRangenDbContext context) { _context = context; }
public GetGenericOccurrencesListQueryHandler(IRangenDbContext context, IMapper mapper) : base(context, mapper) { }
public GetRelationTypesListQueryHandler(IRangenDbContext context, IMapper mapper) : base(context, mapper) { }
public GetCategoryTypesListQueryHandler(IRangenDbContext context, IMapper mapper) : base(context, mapper) { }
public UpdateCategoryCommandHandler(IRangenDbContext context) { _context = context; }
public UpdateRelationCommandHandler(IRangenDbContext context) { _context = context; }
public DeleteCategoryTypeCommandHandler(IRangenDbContext context) { _context = context; }
public UpdateSpecificOccurrenceCommandHandler(IRangenDbContext context) { _context = context; }
public GetItemListQueryHandler(IRangenDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public GetSpecificOccurrenceDetailQueryHandler(IRangenDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }