Beispiel #1
0
 public AnnotationTypeService(IAnnotationTypeRepository annotationTypeRepository)
 {
     _annotationTypeRepository = annotationTypeRepository;
 }
 public DeleteAnnotationTypeCommandHandler(IAnnotationTypeRepository repository)
 {
     annotationTypeRepository = repository;
 }
 public CreateAnnotationTypeCommandHandler(IAnnotationTypeRepository repository)
 {
     this.repository = repository;
 }
 public GetAllAnnotationTypesQuery(IAnnotationTypeRepository repository)
 {
     this.repository = repository;
 }
 public GetAnnotationTypeQuery(IAnnotationTypeRepository repository)
 {
     _repository = repository;
 }
 public UpdateAnnotationTypeCommandHandler(IAnnotationTypeRepository repository)
 {
     _repository = repository;
 }