You are on page 1of 15

Visual Programming(CS-304)

Assignment # 02
University Management system Using c#
Rabeea

Version 1:
using using using using System; System.Collections.Generic; System.Linq; System.Text;

class main { public struct Organization { private string Organization_Type, Organization_Name; private int Year_Of_Establish, No_Of_Department, No_Of_Campuses; private uint No_Of_Hostel; public Departments job; public Program_Class type; public string organization_Type { get { return Organization_Type; } set { Organization_Type = value; } } public string organization_Name { get { return Organization_Name; } set { Organization_Name = value; } } public int year_Of_Establish { get { return Year_Of_Establish; } set { Year_Of_Establish = value; } } public int no_Of_Department { get { return No_Of_Department; } set { No_Of_Department = value; } } public int no_Of_Campuses { get { return No_Of_Campuses; } set { No_Of_Campuses = value; } }

public uint no_Of_Hostel { get { return No_Of_Hostel; } set { No_Of_Hostel = value; } } public Organization(string organization_Type, string organization_Name, int year_Of_Establish, int no_Of_Department, int no_Of_Campuses, uint no_Of_Hostel) : this() { this.organization_Type = organization_Type; this.organization_Name = organization_Name; this.year_Of_Establish = year_Of_Establish; this.no_Of_Department = no_Of_Department; this.no_Of_Campuses = no_Of_Campuses; this.no_Of_Hostel = no_Of_Hostel; } public enum Program_Class { BS_Porgram, MSC_Program, MS_Program, Phd_Program, Associate_Degree_Program, Weekend_Program } public enum Program_Nature_Class { Morning, Evening, Afternoon, Weekend } public enum Departments { CS, BBA, IT, IR, HRM,

MBBS } }; public struct Employee { public Organization organization; private string Employee_Name, Emp_Father_Name, Emp_Address, Date_Of_Joining, Emp_Department, Job_Nature, Position, Program_Type; private int Year_Experiance, Emp_Scale; public Employee_Nature_Class nature; public Employee_Position_Class _position; public string employee_Name { get { return Employee_Name; } set { Employee_Name = value; } } public string emp_Father_Name { get { return Emp_Father_Name; } set { Emp_Father_Name = value; } } public string emp_Address { get { return Emp_Address; } set { Emp_Address = value; } } public string date_Of_Joining { get { return Date_Of_Joining; } set { Date_Of_Joining = value; } } public string emp_Department { get { return Emp_Department; } }

set { Emp_Department = value;

} public string job_Nature { get { return Job_Nature; } set { Job_Nature = value; } } public string position { get { return Position; } set { Position = value; } } public string program_Type { get { return Program_Type; } set { Program_Type = value; } } public int year_Experience { get { return Year_Experiance; } set { Year_Experiance = value; } } public int emp_Scale { get { return Emp_Scale; } set { Emp_Scale = value; } } public Employee(string employee_Name, string emp_Father_Name, string emp_Address, string date_Of_Joining, string emp_Department, string job_Nature, string position, string program_Type, int year_Experience, int emp_Scale, string temp1,

string temp2, int temp3, int temp4, int temp5, uint temp6 ) : this() { this.employee_Name = employee_Name; this.emp_Father_Name = emp_Father_Name; this.emp_Address = emp_Address; this.date_Of_Joining = date_Of_Joining; this.emp_Department = emp_Department; this.job_Nature = job_Nature; this.position = position; this.program_Type = program_Type; this.year_Experience = year_Experience; this.emp_Scale = emp_Scale; organization.organization_Type = temp1; organization.organization_Name = temp2; organization.year_Of_Establish = temp3; organization.no_Of_Department = temp4; organization.no_Of_Campuses = temp5; organization.no_Of_Hostel = temp6; }

Academic, Management, Faculty_Member, Staff_Member, Supporting_Staff, Contractor, Consultant

}; public static void view(ref Employee e) { for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\tEmployee's Information"); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\n"); Console.WriteLine("Name : {0}", e.employee_Name); Console.WriteLine("Father's Name : {0}", e.emp_Father_Name); Console.WriteLine("Address : {0}", e.emp_Address); Console.WriteLine("Date Of Joining : {0}", e.date_Of_Joining); Console.WriteLine("Department : {0}", e.organization.job); Console.WriteLine("Job Nature : {0}", e.nature); Console.WriteLine("Position : {0}", e._position); Console.WriteLine("Program Type : {0}", e.organization.type); Console.WriteLine("Experiance : {0}", e.year_Experience); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.Write("\n"); Console.WriteLine("Organization's Type : {0}", e.organization.organization_Type); Console.WriteLine("Organization's Name : {0}", e.organization.organization_Name);

public enum Employee_Nature_Class { Regular, Visiting, Contract, Daily_Wages, HEC_Scholar

} public enum Employee_Position_Class {

Console.WriteLine("Year Of Established : {0}", e.organization.year_Of_Establish); Console.WriteLine("No Of Departments : {0}", e.organization.no_Of_Department); Console.WriteLine("No of Campuses : {0}", e.organization.no_Of_Campuses); Console.WriteLine("No Of Hostels : {0}", e.organization.no_Of_Hostel); } public static void Program_Type(ref Employee e) { for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\t Program's Type"); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\n\t\tCurrent Program's Type Is {0}", e.organization.type); Console.WriteLine("\n\n\nPress To Convert Program ::"); Console.WriteLine("\t\t\t 1 - BS Program"); Console.WriteLine("\t\t\t 2 - MSC Program "); Console.WriteLine("\t\t\t 3 - MS Program"); Console.WriteLine("\t\t\t 4 - Phd Program"); Console.WriteLine("\t\t\t 5 - Associate Degree Program"); Console.WriteLine("\t\t\t 6 - Weekend Program "); int change; change = Convert.ToInt32(Console.ReadLine()); switch (change) { case 1: e.organization.type = Organization.Program_Class.BS_Porgram; break; case 2: e.organization.type = Organization.Program_Class.MSC_Program; break;

case 3: e.organization.type = Organization.Program_Class.MS_Program; break; case 4: e.organization.type = Organization.Program_Class.Phd_Program; break; case 5: e.organization.type = Organization.Program_Class.Associate_Degr ee_Program; break; case 6: e.organization.type = Organization.Program_Class.Weekend_Progra m; break; } } public static void Transfer_Of_Department(ref Employee e) { for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\t Transfer Of Department"); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\n\t\tEmployee's Current Department Is {0}",e.organization.job); Console.WriteLine("\n\n\nPress To Convert Department ::"); Console.WriteLine("\t\t\t 1 - BBA"); Console.WriteLine("\t\t\t 2 - CS"); Console.WriteLine("\t\t\t 3 - HRM"); Console.WriteLine("\t\t\t 4 - IR"); Console.WriteLine("\t\t\t 5 - IT"); Console.WriteLine("\t\t\t 6 - MBBS"); int change; change=Convert.ToInt32(Console.ReadLine() ); switch( change)

{ case 1: e.organization.job Organization.Departments.BBA; break; case 2: e.organization.job Organization.Departments.CS; break; case 3: e.organization.job Organization.Departments.HRM; break; case 4: e.organization.job Organization.Departments.IR; break; case 5: e.organization.job Organization.Departments.IT; break; case 6: e.organization.job Organization.Departments.MBBS; break; } =

int change; change = Convert.ToInt32(Console.ReadLine()); switch (change) { case 1: e.nature = Employee.Employee_Nature_Class.Contract; break; case 2: e.nature = Employee.Employee_Nature_Class.Daily_Wage s; break; case 3: e.nature = Employee.Employee_Nature_Class.HEC_Schola r; break; case 4: e.nature = Employee.Employee_Nature_Class.Regular; break; case 5: e.nature = Employee.Employee_Nature_Class.Visiting; break; }

} public static void Transfer_Of_Job(ref Employee e) { for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\t Job's Nature"); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\n\t\tEmployee's Current Job Nature Is {0}", e.nature); Console.WriteLine("\n\n\nPress To Convert Nature ::"); Console.WriteLine("\t\t\t 1 - Contract"); Console.WriteLine("\t\t\t 2 - Daiy Wages"); Console.WriteLine("\t\t\t 3 - HEC Scholar"); Console.WriteLine("\t\t\t 4 - Regular"); Console.WriteLine("\t\t\t 5 - Visiting");

} public static void Position(ref Employee e) { for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\t Employee's Position"); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\n\t\tEmployee's Current Position Is {0}", e._position); Console.WriteLine("\n\n\nPress To Convert Position::"); Console.WriteLine("\t\t\t 1 - Academic"); Console.WriteLine("\t\t\t 2 - Management"); Console.WriteLine("\t\t\t 3 - Faculty_Staff");

Console.WriteLine("\t\t\t Staff_Member"); Console.WriteLine("\t\t\t Supporting_Staff"); Console.WriteLine("\t\t\t Contractor "); Console.WriteLine("\t\t\t Consultant");

4 args) 5 6 7

static void Main(string[] { int option; Employee e = new Employee("Ali","Muhammad","Gujrat","2010-2010","CS","Regular", "Academic","BS_Program",4,17,"Public","UO G",2003,20,5,4); do{ Console.Clear(); for(int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\tUniversity Management System"); for (int i = 0; i < 70; i++) { Console.Write("="); }

int change; change = Convert.ToInt32(Console.ReadLine()); switch (change) { case 1: e._position = Employee.Employee_Position_Class.Academic ; break; case 2: e._position = Employee.Employee_Position_Class.Manageme nt; break; case 3: e._position = Employee.Employee_Position_Class.Faculty_ Member; break; case 4: e._position = Employee.Employee_Position_Class.Staff_Me mber; break; case 5: e._position = Employee.Employee_Position_Class.Supporti ng_Staff; break; case 6: e._position = Employee.Employee_Position_Class.Contract or; break; case 7: e._position = Employee.Employee_Position_Class.Consulta nt; break; } }

Console.WriteLine("\n\t\tPress ::"); Console.WriteLine(" \t\t\t1 - View Employee's Information"); Console.WriteLine(" \t\t\t2 - Transfer Of Job"); Console.WriteLine(" \t\t\t3 - Change Of Job Nature"); Console.WriteLine(" \t\t\t4 - Change Of Program Type"); Console.WriteLine(" \t\t\t5 - Change Of Position"); Console.WriteLine(" \n\n\t\t\t\t\t\t - Any Other Number To EXIT"); option=Convert.ToInt32(Console.ReadLine() ); if (option == 1) { Console.Clear(); view( ref e); Console.WriteLine(" \n\n\t\t\t\t\t\t Press Any Key To Go Back "); Console.ReadLine(); } else if (option == 2) {

Console.Clear(); Transfer_Of_Department(ref e); Console.WriteLine(" \n\n\t\t\t\t\t\t Press Any Key To Go Back "); Console.ReadLine(); } else if (option == 3) { Console.Clear(); Transfer_Of_Job(ref e); Console.WriteLine(" \n\n\t\t\t\t\t\t Press Any Key To Go Back "); Console.ReadLine(); } else if (option == 4) { Console.Clear(); Program_Type(ref e); Console.WriteLine(" \n\n\t\t\t\t\t\t Press Any Key To Go Back "); Console.ReadLine(); } else if (option == 5) { Console.Clear(); Position(ref e); Console.WriteLine(" \n\n\t\t\t\t\t\t Press Any Key To Go Back "); Console.ReadLine(); } } while (option >=1 && option <=5) ; } }

Version 2: ===============
Version2.cs =================
using using using using System; System.Collections.Generic; System.Linq; System.Text;

namespace Version2 { class version2 { static void Main(string[] args) { int option; GUI Gul = new Operations(); Operations.Employee e = new Operations.Employee("Ali", "Muhammad", "Gujrat", "20-10-2010", "CS", "Regular", "Academic", "BS_Program", 4, 17, "Public", "UOG", 2003, 20, 5, 4); do { Console.Clear(); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\tUniversity Management System"); for (int i = 0; i < 70; i++) { Console.Write("="); }

Console.WriteLine(" \n\n\t\t\t\t\t\t - Any Other Number To EXIT"); option = Convert.ToInt32(Console.ReadLine()); if (option == 1) { Console.Clear(); Gul.view(ref e); Console.WriteLine(" \n\n\t\t\t\t\t\t - Press Any Key To Go Back "); Console.ReadLine(); } else if (option == 2) { Console.Clear(); Gul.Transfer_Of_Department(ref e); Console.WriteLine(" \n\n\t\t\t\t\t\t - Press Any Key To Go Back "); Console.ReadLine(); } else if (option == 3) { Console.Clear(); Gul.Transfer_Of_Job(ref e); Console.WriteLine(" \n\n\t\t\t\t\t\t - Press Any Key To Go Back "); Console.ReadLine(); } else if (option == 4) { Console.Clear(); Gul.Program_Type(ref e); Console.WriteLine(" \n\n\t\t\t\t\t\t - Press Any Key To Go Back "); Console.ReadLine(); } else if (option == 5) { Console.Clear(); Gul.Position(ref e); Console.WriteLine(" \n\n\t\t\t\t\t\t - Press Any Key To Go Back "); Console.ReadLine(); } } while (option >= 1 && option <= 5)}}}

Console.WriteLine("\n\t\tPress ::"); Console.WriteLine(" \t\t\t1 - View Employee's Information"); Console.WriteLine(" \t\t\t2 - Transfer Of Job"); Console.WriteLine(" \t\t\t3 - Change Of Job Nature"); Console.WriteLine(" \t\t\t4 - Change Of Program Type"); Console.WriteLine(" \t\t\t5 - Change Of Position");

GUI.cs =================
using using using using System; System.Collections.Generic; System.Linq; System.Text;

namespace Version2 { public interface GUI { void view(ref Operations.Employee e); void Program_Type(ref Operations.Employee e); void Transfer_Of_Department(ref Operations.Employee e); void Transfer_Of_Job(ref Operations.Employee e); void Position(ref Operations.Employee e); } } ==========================

Operations.cs ================
using using using using System; System.Collections.Generic; System.Linq; System.Text;

namespace Version2 { public class Operations:GUI { public struct Organization { private string Organization_Type, Organization_Name; private int Year_Of_Establish, No_Of_Department, No_Of_Campuses; private uint No_Of_Hostel; public Departments job; public Program_Class type;

public string organization_Type { get { return Organization_Type; } set { Organization_Type = value; } } public string organization_Name { get { return Organization_Name; } set { Organization_Name = value; } } public int year_Of_Establish { get { return Year_Of_Establish; } set { Year_Of_Establish = value; } } public int no_Of_Department { get { return No_Of_Department; } set { No_Of_Department = value; } } public int no_Of_Campuses { get { return No_Of_Campuses; } set { No_Of_Campuses = value; } } public uint no_Of_Hostel { get { return No_Of_Hostel; } set { No_Of_Hostel = value; } } public Organization(string organization_Type, string organization_Name, int year_Of_Establish, int no_Of_Department, int no_Of_Campuses, uint no_Of_Hostel) : this() {

this.organization_Type = organization_Type; this.organization_Name = organization_Name; this.year_Of_Establish = year_Of_Establish; this.no_Of_Department = no_Of_Department; this.no_Of_Campuses = no_Of_Campuses; this.no_Of_Hostel = no_Of_Hostel; } public enum Program_Class { BS_Porgram, MSC_Program, MS_Program, Phd_Program, Associate_Degree_Program, Weekend_Program } public enum Program_Nature_Class { Morning, Evening, Afternoon, Weekend } public enum Departments { CS, BBA, IT, IR, HRM, MBBS } }; public struct Employee { public Organization organization; private string Employee_Name, Emp_Father_Name, Emp_Address,

Emp_Department, Job_Nature, Position, Program_Type; private int Year_Experiance, Emp_Scale; public Employee_Nature_Class nature; public Employee_Position_Class _position; public string employee_Name { get { return Employee_Name; } set { Employee_Name = value; } } public string emp_Father_Name { get { return Emp_Father_Name; } set { Emp_Father_Name = value; } } public string emp_Address { get { return Emp_Address; } set { Emp_Address = value; } } public string date_Of_Joining { get { return Date_Of_Joining; } set { Date_Of_Joining = value; } } public string emp_Department { get { return Emp_Department; } set { Emp_Department = value; } } public string job_Nature { get { return Job_Nature; } set { Job_Nature = value; }

Date_Of_Joining,

uint temp6 } public string position { get { return Position; } set { Position = value; } } public string program_Type { get { return Program_Type; } set { Program_Type = value; } job_Nature; } public int year_Experience { get { return Year_Experiance; } set { Year_Experiance = value; } } public int emp_Scale { get { return Emp_Scale; } set { Emp_Scale = value; } organization.no_Of_Department = temp4; } public Employee(string employee_Name, string emp_Father_Name, string emp_Address, string date_Of_Joining, string emp_Department, string job_Nature, string position, string program_Type, int year_Experience, int emp_Scale, string temp1, string temp2, int temp3, int temp4, int temp5, organization.no_Of_Campuses = temp5; organization.no_Of_Hostel = temp6; this.position = position; this.program_Type = program_Type; this.year_Experience = year_Experience; this.emp_Scale = emp_Scale; organization.organization_Type = temp1; organization.organization_Name = temp2; organization.year_Of_Establish = temp3; emp_Department; this.job_Nature = ) : this() { this.employee_Name = employee_Name; this.emp_Father_Name = emp_Father_Name; this.emp_Address = emp_Address; this.date_Of_Joining = date_Of_Joining; this.emp_Department =

public enum Employee_Nature_Class { Regular, Visiting, Contract, Daily_Wages, HEC_Scholar

} public enum Employee_Position_Class { Academic,

Management, Faculty_Member, Staff_Member, Supporting_Staff, Contractor, Consultant }

}; public void view(ref Employee e) { for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\tEmployee's Information"); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\n"); Console.WriteLine("Name : {0}", e.employee_Name); Console.WriteLine("Father's Name : {0}", e.emp_Father_Name); Console.WriteLine("Address : {0}", e.emp_Address); Console.WriteLine("Date Of Joining : {0}", e.date_Of_Joining); Console.WriteLine("Department : {0}", e.organization.job); Console.WriteLine("Job Nature : {0}", e.nature); Console.WriteLine("Position : {0}", e._position); Console.WriteLine("Program Type : {0}", e.organization.type); Console.WriteLine("Experiance : {0}", e.year_Experience); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.Write("\n"); Console.WriteLine("Organization's Type : {0}", e.organization.organization_Type); Console.WriteLine("Organization's Name : {0}", e.organization.organization_Name);

Console.WriteLine("Year Of Established : {0}", e.organization.year_Of_Establish); Console.WriteLine("No Of Departments : {0}", e.organization.no_Of_Department); Console.WriteLine("No of Campuses : {0}", e.organization.no_Of_Campuses); Console.WriteLine("No Of Hostels : {0}", e.organization.no_Of_Hostel); } public void Program_Type(ref Employee e) { for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\t Program's Type"); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\n\t\tCurrent Program's Type Is {0}", e.organization.type); Console.WriteLine("\n\n\nPress To Convert Program ::"); Console.WriteLine("\t\t\t 1 - BS Program"); Console.WriteLine("\t\t\t 2 - MSC Program "); Console.WriteLine("\t\t\t 3 - MS Program"); Console.WriteLine("\t\t\t 4 - Phd Program"); Console.WriteLine("\t\t\t 5 - Associate Degree Program"); Console.WriteLine("\t\t\t 6 - Weekend Program "); int change; change = Convert.ToInt32(Console.ReadLine()); switch (change) { case 1: e.organization.type = Organization.Program_Class.BS_Porgram; break; case 2:

e.organization.type = Organization.Program_Class.MSC_Program; break; case 3: e.organization.type = Organization.Program_Class.MS_Program; break; case 4: e.organization.type = Organization.Program_Class.Phd_Program; break; case 5: e.organization.type = Organization.Program_Class.Associate_Degr ee_Program; break; case 6: e.organization.type = Organization.Program_Class.Weekend_Progra m; break; } } public void Transfer_Of_Department(ref Employee e) { for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\t Transfer Of Department"); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\n\t\tEmployee's Current Department Is {0}", e.organization.job); Console.WriteLine("\n\n\nPress To Convert Department ::"); Console.WriteLine("\t\t\t 1 - BBA"); Console.WriteLine("\t\t\t 2 - CS"); Console.WriteLine("\t\t\t 3 - HRM"); Console.WriteLine("\t\t\t 4 - IR"); Console.WriteLine("\t\t\t 5 - IT"); Console.WriteLine("\t\t\t 6 - MBBS"); int change;

change = Convert.ToInt32(Console.ReadLine()); switch (change) { case 1: e.organization.job Organization.Departments.BBA; break; case 2: e.organization.job Organization.Departments.CS; break; case 3: e.organization.job Organization.Departments.HRM; break; case 4: e.organization.job Organization.Departments.IR; break; case 5: e.organization.job Organization.Departments.IT; break; case 6: e.organization.job Organization.Departments.MBBS; break; }

} public void Transfer_Of_Job(ref Employee e) { for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\t Job's Nature"); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\n\t\tEmployee's Current Job Nature Is {0}", e.nature); Console.WriteLine("\n\n\nPress To Convert Nature ::"); Console.WriteLine("\t\t\t 1 - Contract"); Console.WriteLine("\t\t\t 2 - Daiy Wages"); Console.WriteLine("\t\t\t 3 - HEC Scholar");

Console.WriteLine("\t\t\t Regular"); Console.WriteLine("\t\t\t 5 - Visiting"); int change; change = Convert.ToInt32(Console.ReadLine()); switch (change) { case 1: e.nature = Employee.Employee_Nature_Class.Contract; break; case 2: e.nature = Employee.Employee_Nature_Class.Daily_Wage s; break; case 3: e.nature = Employee.Employee_Nature_Class.HEC_Schola r; break; case 4: e.nature = Employee.Employee_Nature_Class.Regular; break; case 5: e.nature = Employee.Employee_Nature_Class.Visiting; break; 4 }

2 3 4 5 6 7

Console.WriteLine("\t\t\t Management"); Console.WriteLine("\t\t\t Faculty_Staff"); Console.WriteLine("\t\t\t Staff_Member"); Console.WriteLine("\t\t\t Supporting_Staff"); Console.WriteLine("\t\t\t Contractor "); Console.WriteLine("\t\t\t Consultant");

} public void Position(ref Employee e) { for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\t\t\t\t Employee's Position"); for (int i = 0; i < 70; i++) { Console.Write("="); } Console.WriteLine("\n\n\t\tEmployee's Current Position Is {0}", e._position); Console.WriteLine("\n\n\nPress To Convert Position::"); Console.WriteLine("\t\t\t 1 - Academic");

int change; change = Convert.ToInt32(Console.ReadLine()); switch (change) { case 1: e._position = Employee.Employee_Position_Class.Academic ; break; case 2: e._position = Employee.Employee_Position_Class.Manageme nt; break; case 3: e._position = Employee.Employee_Position_Class.Faculty_ Member; break; case 4: e._position = Employee.Employee_Position_Class.Staff_Me mber; break; case 5: e._position = Employee.Employee_Position_Class.Supporti ng_Staff; break; case 6: e._position = Employee.Employee_Position_Class.Contract or; break; case 7: e._position = Employee.Employee_Position_Class.Consulta nt; break; } } } }

You might also like