HelpDocument IHelpService.GetHelpDocument(long id)
 {
     using (MyHelpContext context = new MyHelpContext())
     {
         HelpDocument doc = context.HelpDocuments.Find(id);
         return(doc);
     }
 }
Exemple #2
0
        /// <summary>
        /// Creates list of fake help documents
        /// </summary>
        /// <returns>List of Help Documents</returns>
        private List <HelpDocument> GetDocuments()
        {
            List <HelpDocument> helpDocuments = new List <HelpDocument>();

            HelpDocument doc1 = new HelpDocument()
            {
                ID        = 1,
                Title     = "Test Help Document",
                MediaLink = "http://www.google.com"
            };

            HelpDocument doc2 = new HelpDocument()
            {
                ID        = 1,
                Title     = "Second Document",
                MediaLink = "http://www.yahoo.com"
            };

            HelpDocument doc3 = new HelpDocument()
            {
                ID        = 1,
                Title     = "Test Help Document with Media Link",
                MediaLink = "http://www.cnn.com"
            };

            HelpDocument doc4 = new HelpDocument()
            {
                ID        = 1,
                Title     = "Fourth Help Document",
                MediaLink = "http://www.msn.com"
            };

            HelpDocument doc5 = new HelpDocument()
            {
                ID        = 1,
                Title     = "Another Test Help Document with Media Link",
                MediaLink = "http://www.google.com"
            };

            helpDocuments.Add(doc1);
            helpDocuments.Add(doc2);
            helpDocuments.Add(doc3);
            helpDocuments.Add(doc4);
            helpDocuments.Add(doc5);

            return(helpDocuments);
        }
Exemple #3
0
        public HelpDocument GetHelpDoc(long id)
        {
            HelpDocument result = this._HelpService.GetHelpDocument(id);

            return(result);
        }