public List <string> GetListInvoices(DateTime Initial_Date)
        {
            var contexto = new ATLANEntities();

            try
            {
                return(contexto.usp_ST_SYSFLEX_GET_RENEW_INVOICES(Initial_Date).ToList());
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                contexto.Dispose();
            }
        }