public void Create(AlumniAddressSet _alumniAddress)
        {
            using (var db = new osu2008Entities1())
            {
                var alumniAddress = _alumniAddress;

                db.AlumniAddressSet.Add(_alumniAddress);
                db.SaveChanges();
            }
        }
 public void Update(AlumniAddressSet _alumniAddress)
 {
     throw new NotImplementedException();
 }