개정판 709c1971
issue #0000
전체 유저 리스트 추가
문서 저장/수정/삭제 추가 진행
Change-Id: I828d95f415d5d360bfc039625eb7aa42fd4135c2
ID2.Manager/ID2.Manager.Dapper/Repository/UserRepository.cs | ||
---|---|---|
12 | 12 |
{ |
13 | 13 |
public UserRepository(string connectionStr) : base(connectionStr) {} |
14 | 14 |
|
15 |
public IEnumerable<UserInfo> GetAllUserInfo() |
|
16 |
{ |
|
17 |
string query = $@"select * from dbo.Users order by [Name]"; |
|
18 |
|
|
19 |
return Query<UserInfo>(query); |
|
20 |
} |
|
21 |
|
|
15 | 22 |
public UserInfo GetUserInfo(string userId, string userPW) |
16 | 23 |
{ |
17 | 24 |
string query = $@" |
내보내기 Unified diff