public CreationManager(ICreationRepository creationRepository)
 {
     _creationRepository = creationRepository;
 }
Beispiel #2
0
 public SurveyRoot(ICreationRepository _repository, ISurveyRepository _surveyRepository)
 {
     repository       = _repository;
     surveyRepository = _surveyRepository;
 }
 public SurveyQuestionsAggregateRoot(ICreationRepository _repository)
 {
     repository = _repository;
 }