Example #1
0
        public bool GetByRef()
        {
            bool res = false;

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

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