コード例 #1
0
ファイル: Client.cs プロジェクト: zPepe/ptGym-UWP-MVVM
        public bool GetByCC()
        {
            bool res = false;

            res = ClientDAL.GetByCC(this);
            return(res);
        }
コード例 #2
0
ファイル: Client.cs プロジェクト: zPepe/ptGym-UWP-MVVM
        public bool Create()
        {
            bool res = false;

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