public IHttpActionResult All()
 {
     return(Ok(new
     {
         plans = Plan.All()
     }));
 }