private Course[] InitCourses()
        {
            var initCourses = new Course[] {
                new Course()
                { 
                    Title = "Android for .NET Developers",
                    Description = "Provides an overview of the tools used in the Android " + 
                    "development process including the newly released Android Studio.",
                    Image = "ps_top_card_01"
                },

                new Course()
                { 
                    Title = "Android Dreams, Widgets, Notifications",
                    Description = "Provide users with a rich and interactive experience " +
                    "without ever requiring them to open your app.",
                    Image = "ps_top_card_02"
                },
                new Course()
                { 
                    Title = "Android Photo/Video Programming",
                    Description = "Learn how to capitalize on the Android camera " + 
                    "within your apps to capture still photos and video.",
                    Image = "ps_top_card_03"
                },
                new Course()
                { 
                    Title = "Android Location-Based Apps",
                    Description = "Cover the wide range of Android location capabilities " +
                    "including determining user location, power management, and " + 
                    "translating location data to human-readable addresses.",
                    Image = "ps_top_card_04"
                }

            };

            return initCourses;
        }
        private Course[] InitCoursesWindowsPhone()
        {
            var initCourses = new Course[] {
                new Course()
                {
                    Title = "Windows Phone 7 Basics",
                    Description = "The course introduces you to the basics of the " +
                    "Windows Phone 7 platform using Visual Studio 2010 and Blend.",
                    Image = "ps_top_card_01"
                },

                new Course()
                {
                    Title = "Beyond the Basics in Windows Phone 8",
                    Description = "This course will walk you through four new features " +
                    "included in the Windows Phone 8 SDK including: Speech, In-App Purchasing, " +
                    "Wallet transactions and the new Map control.",
                    Image = "ps_top_card_02"
                },
                new Course()
                {
                    Title = "Introduction to Windows Phone 8",
                    Description = "Learn how to build apps that run on Windows Phone.",
                    Image = "ps_top_card_03"
                },
                new Course()
                {
                    Title = "Building Windows Phone Apps that Stand Out",
                    Description = "Learn to use some of the best features of the Windows Phone " +
                    "platform to make your next app get noticed.",
                    Image = "ps_top_card_04"
                }

            };

            return initCourses;
        }
        private Course[] InitCoursesIOS()
        {
            var initCourses = new Course[] {
                new Course()
                {
                    Title = "iOS 7 Fundementals",
                    Description = "This course is intended to get you up to speed  " +
                    "on the basic skills you need to become a successful iOS developer.",
                    Image = "ps_top_card_01"
                },

                new Course()
                {
                    Title = "Beginning iOS 7 Development",
                    Description = "In this course, you'll learn the basics of " +
                    "how to create iOS applications using Objective-C.",
                    Image = "ps_top_card_02"
                },
                new Course()
                {
                    Title = "Introduction to XCode",
                    Description = "This course provides the foundational skills " +
                    "you need to use Xcode effectively.",
                    Image = "ps_top_card_03"
                },
                new Course()
                {
                    Title = "iOS Graphics and Animation",
                    Description = "Learn how to work with graphics and animation " +
                    "on iOS devices.",
                    Image = "ps_top_card_04"
                }

            };

            return initCourses;
        }
Beispiel #4
0
 private CoursesLibrary.Course[] InitCourses()
 {
     var initCourses = new Course[]
     {
         new Course()
         {
             Title = "Course One",
             Description = "This is a description for course one.",
             Image = "octocat_01"
         },
         new Course()
         {
             Title = "Course Two",
             Description = "This is a description for course two.",
             Image = "octocat_02"
         },
         new Course()
         {
             Title = "Course Three",
             Description = "This is a description for course three.",
             Image = "octocat_03"
         },
         new Course()
         {
             Title = "Course Four",
             Description = "This is a description for course four.",
             Image = "octocat_04"
         }
     };
     return initCourses;
 }