// GET: api/getAddressByID
 public IHttpActionResult getAddressByID(int id)
 {
     return(Ok(db.sp_getAddressByID(id)));
 }