hytos / ID2.Manager / ID2.Manager.Controller / Controllers / ID2Controller.cs @ fe57f64a
이력 | 보기 | 이력해설 | 다운로드 (583 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 | fe57f64a | yoush97 | using (ID2Repository rep = new ID2Repository(this._SQLITECONNSTR, DatabaseType.SQLITE)) |
18 | be2dacfc | yoush97 | { |
19 | return rep.GetID2ProjectList(); |
||
20 | } |
||
21 | } |
||
22 | } |
||
23 | } |