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

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