public ActivityInteractor(
     IActivityRepository activityRepository, DocumentsInteractor documentsInteractor, CommentsInteractor commentsInteractor)
 {
     this.activityRepository  = activityRepository;
     this.documentsInteractor = documentsInteractor;
     this.commentsInteractor  = commentsInteractor;
 }
Example #2
0
 public ShareController(
     GetAllSharedDataInteractor getAllSharedDataInteractor,
     GetSharedActivitiesInteractor sharedActivitiesInteractor,
     InsertActivityInteractor insertActivityInteractor,
     DocumentsInteractor documentsInteractor,
     IShareRepository shareRepository,
     GetSharedDocumentsInteractor getSharedDocumentsInteractor)
 {
     this.getAllSharedDataInteractor   = getAllSharedDataInteractor;
     this.sharedActivitiesInteractor   = sharedActivitiesInteractor;
     this.insertActivityInteractor     = insertActivityInteractor;
     this.documentsInteractor          = documentsInteractor;
     this.shareRepository              = shareRepository;
     this.getSharedDocumentsInteractor = getSharedDocumentsInteractor;
 }
 public DocumentController(DocumentsInteractor documentsInteractor, ICurrentUserInformation currentUserInformation)
 {
     this.documentsInteractor    = documentsInteractor;
     this.currentUserInformation = currentUserInformation;
 }