public static String Delete(ref String missatge, socis soci)
        {
            Orm.bd.socis.Remove(soci);

            missatge = Orm.mySaveChanges();

            return(missatge);
        }
        public static String Insert(ref String missatge, socis nouSocis)
        {
            Orm.bd.socis.Add(nouSocis);

            missatge = Orm.mySaveChanges();

            return(missatge);
        }
        public static String Update(ref String missatge, socis soci)
        {
            try
            {
                Orm.bd.SaveChanges();
            }
            catch (DbUpdateException ex)
            {
                SqlException sqlException = (SqlException)ex.InnerException.InnerException;
                missatge = Orm.missatgeError(sqlException);
            }

            return(missatge);
        }
        public static List <menors_socis> Select(ref String missatge, socis soci)
        {
            List <menors_socis> _menors = null;

            try
            {
                _menors = Orm.bd.menors_socis
                          .Where(m => m.id_soci == soci.id).ToList();
            }
            catch (SqlException ex)
            {
                missatge = Orm.missatgeError(ex);
            }
            return(_menors);
        }