hytos / ID2.Manager / ID2.Manager.Controller / Controllers / ID2Controller.cs @ 81d15568
이력 | 보기 | 이력해설 | 다운로드 (591 Bytes)
1 |
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 |
public IEnumerable<ID2ProjectInfo> GetID2ProjectList() |
16 |
{ |
17 |
using (ID2Repository rep = new ID2Repository(this._SQLITEDbConnectionStr, DatabaseType.SQLITE)) |
18 |
{ |
19 |
return rep.GetID2ProjectList(); |
20 |
} |
21 |
} |
22 |
} |
23 |
} |