protected void btnUpdatePrice_Command(object sender, CommandEventArgs e)
 {
     if (e.CommandName == "UpdateMedicarePriceAll")
     {
         decimal newPrice = Convert.ToDecimal(txtNewPrice.Text);
         OfferingDB.UpdateAllMedicare(newPrice);
         FillGrid();
     }
 }