Created
January 26, 2012 04:28
-
-
Save jayhjkwon/1681003 to your computer and use it in GitHub Desktop.
Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Teacher | |
{ | |
public string Name { get; set; } | |
public string Age { get; set; } | |
public Teacher SearchTeacher(teacher t) | |
{ | |
// TODO | |
// 실제 디비를 조회해서 해당 결과를 Teacher 타입으로 리턴하는 로직. | |
return new Teacher(); | |
} | |
} |
test
test
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
test