11 lines
226 B
C#
11 lines
226 B
C#
|
public class UsersController
|
||
|
{
|
||
|
public bool UserNameAvailable(string username)
|
||
|
{
|
||
|
if(MyRepository.UserNameExists(username))
|
||
|
{
|
||
|
return "false";
|
||
|
}
|
||
|
return "true";
|
||
|
}
|
||
|
}
|