public static void Main()
Console.WriteLine("Are you a New Student? Y/N");
string isNewStudent = Console.ReadLine().ToLower();
Student.CreateNewStudentAcc();
else if(isNewStudent == "n")
Console.WriteLine("Please Enter your Student ID please");
public string firstName {get; set;}
public string lastName {get; set;}
public string email {get; set;}
public long phoneNum {get; set;}
public static string GetFirstName(){
Console.WriteLine("What is your first name?");
userInput = Console.ReadLine();
public static string GetLastName(){
Console.WriteLine("and what is your last name?");
userInput = Console.ReadLine();
public static string GetEmail(){
Console.WriteLine("What is your email address?");
userInput = Console.ReadLine();
public static long GetPhoneNum(){
Console.WriteLine("What is your phone number?");
userInput = Int64.Parse(Console.ReadLine());
public static void CreateNewStudentAcc(){
Student newStudent = new Student();
string firstName = Student.GetFirstName();
string lastName = Student.GetLastName();
string email = Student.GetEmail();
long phoneNum = Student.GetPhoneNum();
newStudent.firstName = firstName;
newStudent.lastName = lastName;
newStudent.email = email;
newStudent.phoneNum = phoneNum;