public static List <Empleados> GetListTodo()
        {
            List <Empleados> lista = null;

            using (var db = new Repositorio <Empleados>())
            {
                try
                {
                    lista = db.GetListTodo();
                }
                catch (Exception)
                {
                    throw;
                }
                return(lista);
            }
        }