|
@@ -25,6 +25,7 @@ namespace GxPress.Service.Implement
|
|
|
private readonly IUserRepository _userRepository;
|
|
|
private readonly IDepartmentRepository _departmentRepository;
|
|
|
private readonly INoticeService _noticeService;
|
|
|
+ private readonly INoticeRepository _noticeRepository;
|
|
|
private readonly IFlowAttachmentRepository flowAttachmentRepository;
|
|
|
private readonly IMiddleRepository middleRepository;
|
|
|
|
|
@@ -42,7 +43,11 @@ namespace GxPress.Service.Implement
|
|
|
IFlowFieldValueRepository flowFieldValueRepository,
|
|
|
IProcessService processService,
|
|
|
IUserRepository userRepository,
|
|
|
- IDepartmentRepository departmentRepository, INoticeService noticeService, IFlowAttachmentRepository flowAttachmentRepository, IMiddleRepository middleRepository
|
|
|
+ IDepartmentRepository departmentRepository,
|
|
|
+ INoticeService noticeService,
|
|
|
+ IFlowAttachmentRepository flowAttachmentRepository,
|
|
|
+ IMiddleRepository middleRepository,
|
|
|
+ INoticeRepository _noticeRepository
|
|
|
)
|
|
|
{
|
|
|
_environment = environment;
|
|
@@ -62,10 +67,9 @@ namespace GxPress.Service.Implement
|
|
|
_noticeService = noticeService;
|
|
|
this.flowAttachmentRepository = flowAttachmentRepository;
|
|
|
this.middleRepository = middleRepository;
|
|
|
+ this._noticeRepository = _noticeRepository;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
//public void OnFlowAdded(FlowDto flow)
|
|
|
//{
|
|
|
// flow.
|