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