public ProjectManagementPlansController(IUnitOfWorkPseezEnt uow,
                                         IProjectDocumentValueService projectDocumentValueService,
                                         IProjectDocumentFileService projectDocumentFileService,
                                         IProjectDocumentValueFilesService projectDocumentValueFileService,
                                         IProjectDocumentFileDeletedService projectDocumentFileDeletedServic)
     : base(uow, projectDocumentValueService, projectDocumentFileService,
            projectDocumentValueFileService, projectDocumentFileDeletedServic)
 {
 }
 public ExternalDocumentsController(IUnitOfWorkPseezEnt uow,
                                    IProjectDocumentValueService projectDocumentValueService,
                                    IProjectDocumentFileService projectDocumentFileService,
                                    IProjectDocumentValueFilesService projectDocumentValueFileService,
                                    IProjectDocumentFileDeletedService projectDocumentFileDeletedServic)
     : base(uow, projectDocumentValueService, projectDocumentFileService,
            projectDocumentValueFileService, projectDocumentFileDeletedServic)
 {
 }
예제 #3
0
 public ProjectDocumentsController(IUnitOfWorkPmbok uow,
                                   IProjectDocumentValueService projectDocumentValueService,
                                   IProjectDocumentFileService projectDocumentFileService,
                                   IProjectDocumentValueFilesService projectDocumentValueFileService,
                                   IProjectDocumentFileDeletedService projectDocumentFileDeletedServic)
     : base(uow, projectDocumentValueService, projectDocumentFileService,
            projectDocumentValueFileService, projectDocumentFileDeletedServic)
 {
 }
 //برای استفاده در Project Document
 public ProjectProcessesBaseController(IUnitOfWorkPseezEnt uow,
                                       IProjectDocumentValueService projectDocumentValueService,
                                       IProjectDocumentFileService projectDocumentFileService,
                                       IProjectDocumentValueFilesService projectDocumentValueFileService,
                                       IProjectDocumentFileDeletedService projectDocumentFileDeletedServic)
 {
     _uow = uow;
     _projectDocumentValueService       = projectDocumentValueService;
     _projectDocumentFileService        = projectDocumentFileService;
     _projectDocumentValueFileService   = projectDocumentValueFileService;
     _projectDocumentFileDeletedService = projectDocumentFileDeletedServic;
 }