public UpsertCategoryTypeCommandHandler(IRangenDbContext context)
 {
     _context = context;
 }
示例#2
0
 public DeleteRelationTypeCommandHandler(IRangenDbContext context)
 {
     _context = context;
 }
 public Handler(IRangenDbContext context)
 {
     _context = context;
 }
示例#4
0
 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)
 {
 }
示例#8
0
 public UpdateCategoryCommandHandler(IRangenDbContext context)
 {
     _context = context;
 }
示例#9
0
 public UpdateRelationCommandHandler(IRangenDbContext context)
 {
     _context = context;
 }
 public DeleteCategoryTypeCommandHandler(IRangenDbContext context)
 {
     _context = context;
 }
 public UpdateSpecificOccurrenceCommandHandler(IRangenDbContext context)
 {
     _context = context;
 }
示例#12
0
 public GetItemListQueryHandler(IRangenDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
示例#13
0
 public GetSpecificOccurrenceDetailQueryHandler(IRangenDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }