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

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

            if (!ClientDAL.GetByCC(this))
            {
                res = ClientDAL.Create(this);
            }
            return(res);
        }