public List<cliente_empleadoList> save(cliente_empleado o)
        {
            try
            {
                using (var db = new PruebaContext())
                {
                    db.cliente_empleado.Add(o);

                    var validationErrors = db.GetValidationErrors();

                    db.SaveChanges();
                    return listAll();
                }
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message.ToString());
            }
        }