Ejemplo n.º 1
0
        public static DataTable getAllCategory()
        {
            string sql = "select * from [Category] ";

            return(DAO.GetDataBySQL(sql));
        }
Ejemplo n.º 2
0
        public static DataTable getAllAccount()
        {
            string sql = "select * from Account ";

            return(DAO.GetDataBySQL(sql));
        }
Ejemplo n.º 3
0
        public static DataTable getAllPlatform()
        {
            string sql = "  select * from [Platform] ";

            return(DAO.GetDataBySQL(sql));
        }