Пример #1
0
 ///<summary>
 ///OaAttachmentService 构造函数
 ///</summary>
 public OaAttachmentService(IOaAttachmentRepository oaAttachmentRepository)
 {
     OaAttachmentRepository = oaAttachmentRepository;
 }
Пример #2
0
 ///<summary>
 /// oa_attachmentController
 ///</summary>
 public OaAttachmentController(OaAttachmentService oaAttachmentService, IOaAttachmentRepository oaAttachmentRepository)
 {
     _oaAttachmentService    = oaAttachmentService;
     _oaAttachmentRepository = oaAttachmentRepository;
 }