hytos / ID2.Manager / ID2.Manager.Controller / Controllers / ID2Controller.cs @ edded054
이력 | 보기 | 이력해설 | 다운로드 (730 Bytes)
1 | be2dacfc | yoush97 | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | using ID2.Manager.Data.Models; |
||
8 | using ID2.Manager.Dapper.Repository; |
||
9 | using ID2.Manager.Dapper; |
||
10 | |||
11 | namespace ID2.Manager.Controller.Controllers |
||
12 | { |
||
13 | public class ID2Controller : BaseController |
||
14 | { |
||
15 | 81d15568 | yoush97 | public IEnumerable<ID2ProjectInfo> GetID2ProjectList() |
16 | be2dacfc | yoush97 | { |
17 | 82705273 | yoush97 | try |
18 | be2dacfc | yoush97 | { |
19 | 82705273 | yoush97 | using (ID2Repository rep = new ID2Repository(this._SQLITECONNSTR, DatabaseType.SQLITE)) |
20 | { |
||
21 | return rep.GetID2ProjectList(); |
||
22 | } |
||
23 | } |
||
24 | catch (Exception ex) |
||
25 | { |
||
26 | throw ex; |
||
27 | be2dacfc | yoush97 | } |
28 | } |
||
29 | } |
||
30 | } |