Esempio n. 1
0
        public static List <MStatic> GetOrder()
        {
            List <MStatic> lisQuery = new List <MStatic>();

            for (int i = 1; i <= 10; i++)
            {
                MStatic entRow = new MStatic();
                entRow.Id    = i.ToString();
                entRow.Value = i.ToString();
                lisQuery.Add(entRow);
            }

            return(lisQuery);
        }
Esempio n. 2
0
        public static List <MStatic> GetTypeFile()
        {
            List <MStatic> lisQuery = new List <MStatic>();
            MStatic        entRow;

            entRow       = new MStatic();
            entRow.Id    = "1";
            entRow.Value = "Image";
            lisQuery.Add(entRow);
            entRow       = new MStatic();
            entRow.Id    = "2";
            entRow.Value = "Video";
            lisQuery.Add(entRow);
            return(lisQuery);
        }
Esempio n. 3
0
        public static List <MStatic> GetTypeInterface()
        {
            List <MStatic> lisQuery = new List <MStatic>();
            MStatic        entRow;

            entRow       = new MStatic();
            entRow.Id    = "2";
            entRow.Value = "Web";
            lisQuery.Add(entRow);
            entRow       = new MStatic();
            entRow.Id    = "1";
            entRow.Value = "App";
            lisQuery.Add(entRow);
            return(lisQuery);
        }
Esempio n. 4
0
        public static List <MStatic> GetRegistered()
        {
            List <MStatic> lisQuery = new List <MStatic>();
            MStatic        entRow;

            entRow       = new MStatic();
            entRow.Id    = "1";
            entRow.Value = "Yes";
            lisQuery.Add(entRow);
            entRow       = new MStatic();
            entRow.Id    = "0";
            entRow.Value = "Not";
            lisQuery.Add(entRow);
            return(lisQuery);
        }
Esempio n. 5
0
        public static List <MStatic> GetTypeDonation()
        {
            List <MStatic> lisQuery = new List <MStatic>();
            MStatic        entRow;

            entRow       = new MStatic();
            entRow.Id    = "-1";
            entRow.Value = "All";
            lisQuery.Add(entRow);
            entRow       = new MStatic();
            entRow.Id    = "0";
            entRow.Value = "Anonymous";
            lisQuery.Add(entRow);
            return(lisQuery);
        }
Esempio n. 6
0
        public static List <MStatic> GetStatus()
        {
            List <MStatic> lisQuery = new List <MStatic>();
            MStatic        entRow;

            entRow       = new MStatic();
            entRow.Id    = "1";
            entRow.Value = "Active";
            lisQuery.Add(entRow);
            entRow       = new MStatic();
            entRow.Id    = "0";
            entRow.Value = "Inactive";
            lisQuery.Add(entRow);
            return(lisQuery);
        }