Skip to content

Instantly share code, notes, and snippets.

@jayhjkwon
Created January 26, 2012 04:28
Show Gist options
  • Save jayhjkwon/1681003 to your computer and use it in GitHub Desktop.
Save jayhjkwon/1681003 to your computer and use it in GitHub Desktop.
Sample
public class Teacher

{

public string Name { get; set; }

public string Age { get; set; }


public Teacher SearchTeacher(teacher t)

{

// TODO
// 실제 디비를 조회해서 해당 결과를 Teacher 타입으로 리턴하는 로직.
return new Teacher(); 


}
}
@jayhjkwon
Copy link
Author

test

@jayhjkwon
Copy link
Author

test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment