C# 클래스 UserRegistration.UsersController

상속: ApiController
파일 보기 프로젝트 열기: jannunzi/dev

공개 메소드들

메소드 설명
DeleteUser ( int id ) : string
GetAllUser ( ) : List
GetUser ( int id ) : UserTO
GetUserByUsername ( string username ) : List
PostUser ( UserTO newUser ) : string
PutUser ( int id, UserTO oldUser ) : string

메소드 상세

DeleteUser() 공개 메소드

public DeleteUser ( int id ) : string
id int
리턴 string

GetAllUser() 공개 메소드

public GetAllUser ( ) : List
리턴 List

GetUser() 공개 메소드

public GetUser ( int id ) : UserTO
id int
리턴 UserRegistration.Models.UserTO

GetUserByUsername() 공개 메소드

public GetUserByUsername ( string username ) : List
username string
리턴 List

PostUser() 공개 메소드

public PostUser ( UserTO newUser ) : string
newUser UserRegistration.Models.UserTO
리턴 string

PutUser() 공개 메소드

public PutUser ( int id, UserTO oldUser ) : string
id int
oldUser UserRegistration.Models.UserTO
리턴 string