コード例 #1
0
        public string T_Information_Select()
        {
            T_InformationModel tinfo = new T_InformationModel();
            InformationBL      ibl   = new InformationBL();

            return(DataTableToJSONWithJSONNet(ibl.T_Information_Select()));
        }
コード例 #2
0
        public string M_Group_Select()
        {
            T_InformationModel tinfo = new T_InformationModel();
            InformationBL      ibl   = new InformationBL();

            return(DataTableToJSONWithJSONNet(ibl.Get_M_GroupName()));
        }
コード例 #3
0
        public DataTable GetInformation(M_CompanyModel mc)
        {
            BaseDL             bdl    = new BaseDL();
            M_CompanyModel     mdl    = new M_CompanyModel();
            T_InformationModel tmodel = new T_InformationModel();
            DataTable          dtinfo = new DataTable();

            SqlParameter[] prms = new SqlParameter[1];
            prms[0] = new SqlParameter("@companyCD", SqlDbType.VarChar)
            {
                Value = mc.CompanyCD
            };
            dtinfo = bdl.SelectData("T_Information_Select_ForHomePage", prms);
            return(dtinfo);
        }