Beispiel #1
0
        public bool GetByCC()
        {
            bool res = false;

            res = CoachDAL.GetByCC(this);
            return(res);
        }
Beispiel #2
0
        public bool Create()
        {
            bool res = false;

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