コード例 #1
0
ファイル: User.cs プロジェクト: Al-mustanjid/FrontCode
        // Properties are initialize on the fly



        public DataTable Login()
        {
            FrontCodeBusiness fcb = new FrontCodeBusiness
            {
                UserObj = this
            };

            return(fcb.SelectUser());
        }
コード例 #2
0
ファイル: User.cs プロジェクト: Al-mustanjid/FrontCode
        public bool Registration()
        {
            FrontCodeBusiness fcb = new FrontCodeBusiness
            {
                UserObj = this
            };

            fcb.AddNewUser();

            return(true);
        }