public virtual List <ClientesEventualesGET> GetDatosClientesEventualesGET(string Codigo, string Nombre, string Apellido, string Cuit)
        {
            using (SispackEntities context = new SispackEntities())
            {
                List <ClientesEventualesGET> lista = new List <ClientesEventualesGET>();

                lista = context.ClientesEventualesGET(Codigo, Nombre, Apellido, Cuit).ToList();
                return(lista);
            }
        }