public StageInfoeAppService(
     IStageInfoRepository stageInfoRepository,
     IStageInfoUserRepository stageInfoUserRepository,
     IAttachmentRepository attachmentRepository,
     IModuleIdAttachmentRepository modelAttachmentRepository)
 {
     this._stageInfoRepository       = stageInfoRepository;
     this._stageInfoUserRepository   = stageInfoUserRepository;
     this._modelAttachmentRepository = modelAttachmentRepository;
     this._attachmentRepository      = attachmentRepository;
 }
 public AttachmentAppService(IAttachmentRepository attachmentRepository
                             , IModuleIdAttachmentRepository moduleIdAttachmentRepository)
 {
     this._attachmentRepository         = attachmentRepository;
     this._moduleIdAttachmentRepository = moduleIdAttachmentRepository;
 }