public StudentModel(CollegeModel college, string name, string subject)
 {
     this.StudentID = Guid.NewGuid().ToString();
     this.College = college;
     this.Name = name;
     this.Subject = subject;
 }
 public CollegeAddedEvent(CollegeModel college, object sender)
     : base(sender)
 {
     this.College = college;
 }
        public void AddColleges()
        {
            CollegeModel college;

            college = new CollegeModel("Air University");
            college.Address = "XYZ 1234567878900";
            college.City = "Indianapolis";
            college.State = "Indiana";
            college.Country = "USA";
            college.ContactNumber = "371-356-8546";
            this._collegeVM.CollegeList.Add(college);

            college = new CollegeModel("Guru Govind Sing University");
            college.Address = "Block 214, Johnson Road";
            college.City = "Chandigarh";
            college.State = "Punjab";
            college.Country = "India";
            this._collegeVM.CollegeList.Add(college);

            college = new CollegeModel("Kurukshetra University");
            college.Address = "XYZ 1234567878900";
            college.City = "Indianapolis";
            college.State = "Indiana";
            college.Country = "USA";
            college.ContactNumber = "371-356-8546";
            this._collegeVM.CollegeList.Add(college);

            college = new CollegeModel("Indiana University");
            college.Address = "7733 Santa Monica Dr.,";
            college.City = "Indianapolis";
            college.State = "Indiana";
            college.Country = "USA";
            college.ContactNumber = "371-356-8546";
            this._collegeVM.CollegeList.Add(college);

            college = new CollegeModel("Sinhgarh University");
            college.Address = "P.O. 13564, Sinhgarh Road";
            college.City = "Pune";
            college.State = "Maharashtra";
            college.Country = "India";
            college.ContactNumber = "371-356-8546";
            this._collegeVM.CollegeList.Add(college);

            college = new CollegeModel("University Of Rajasthan");
            college.Address = "J.L.N. Marg, Bapu Nagar, Near Birla Mandir";
            college.City = "Jaipur";
            college.State = "Rajasthan";
            college.Country = "India";
            college.ContactNumber = "371-356-8546";
            this._collegeVM.CollegeList.Add(college);
        }