public string User_Login(User usr) { if (Check_User(usr)) return "000-1234"; return "Authorazition Error"; }
public bool Check_User(User usr) { return true; }