public bool createUser(string email, string username, string password) { logicUser = new BusinessLogicLayer.User(); return(true); }
public bool CheckInfoLogin(string username, string password) { logicUser = new BusinessLogicLayer.User(); //return logicUser.CheckUserLogin(username, password); return(true); }