개정판 fe57f64a
issue #0000
ID2 DB 별 접속을 위한 BaseController 수정
Document 의 ID2 수정날짜 조회 적용(수정필요) - Main 화면에 ID2 ID2 완료일 적용버튼 추가
ID2 DB 별 접속 조회 개발
ID2 Drawings 모델 생성
Change-Id: I2e2a6dd06fec30688dce33f0c4d25f3d0385fa8c
ID2.Manager/ID2.Manager.Controller/Controllers/FileController.cs | ||
---|---|---|
13 | 13 |
{ |
14 | 14 |
public IEnumerable<FileInfo> GetFileList(string documentID) |
15 | 15 |
{ |
16 |
using (FileRepository rep = new FileRepository(this._DbConnectionStr))
|
|
16 |
using (FileRepository rep = new FileRepository(this._MSSQLCONNSTR))
|
|
17 | 17 |
{ |
18 | 18 |
return rep.GetFileList(documentID); |
19 | 19 |
} |
... | ... | |
21 | 21 |
|
22 | 22 |
public bool SetUserInfo(List<FileInfo> fileList) |
23 | 23 |
{ |
24 |
using (FileRepository rep = new FileRepository(this._DbConnectionStr))
|
|
24 |
using (FileRepository rep = new FileRepository(this._MSSQLCONNSTR))
|
|
25 | 25 |
{ |
26 | 26 |
return rep.SetFileInfo(fileList); |
27 | 27 |
} |
내보내기 Unified diff