public void DeleteSpecial(int id)
 {
     using (_ctx = new GuildCarsEntities())
     {
         try
         {
             _ctx.DeleteSpecial(id);
         }
         catch (Exception ex)
         {
             throw ex;
         }
     }
 }