Esempio n. 1
0
        public bool GetByRef()
        {
            bool res = false;

            res = RegistrationDAL.GetByRef(this);
            return(res);
        }
Esempio n. 2
0
        public bool Create()
        {
            bool res = false;

            if (!RegistrationDAL.GetByRef(this))
            {
                res = RegistrationDAL.Create(this);
            }
            return(res);
        }