public static List <Object> CargarAutocompletePromociones()
        {
            IEnumerable <Promocion> promociones = Promocion.Listar("AB");

            List <Object> listResponse = new List <Object>();

            if (promociones != null)
            {
                listResponse.Add("OK");
                listResponse.Add(promociones);
            }
            else
            {
                listResponse.Add("Error");
                listResponse.Add("");
            }

            return(listResponse);
        }