コード例 #1
0
ファイル: Appoinment.cs プロジェクト: manjulaup/LinkRepo
        public DataTable SelectAll(EntityHandler.Appoinment obj)
        {
            DataTable dt = new DataTable();

            try
            {
                string SqlCommand = "";

                dt = new DALBase().Select(SqlCommand);
            }
            catch (Exception ex)
            { }
            return(dt);
        }
コード例 #2
0
ファイル: Appoinment.cs プロジェクト: manjulaup/LinkRepo
        public bool Delete(EntityHandler.Appoinment obj)
        {
            bool Status = false;

            try
            {
                string SqlCommand = "";

                Status = new DALBase().Update(SqlCommand);
            }
            catch (Exception ex)
            { }
            return(Status);
        }