Ejemplo n.º 1
0
        //
        public int SignUpGoogle(Tourist tourist)
        {
            DBservices db = new DBservices();
            Tourist    t  = db.LogInFacebook(tourist);

            if (t.Email == null)
            {
                return(db.AddGoogleAccount(tourist));
            }
            else
            {
                return(2);
            }
        }