Contact Manager Web API

This sample uses ASP.NET Web API to build a simple contact manager application. The application consists of a contact manager web API that is used by an ASP.NET MVC application, a Windows Phone application, and a Windows 8 app to display and manage a list of contacts.

C# (1,9 MB)
 
 
 
 
 
(25)
39 987 razy
Dodaj do ulubionych
2012-08-16
E-mail Twitter del.icio.us Digg Facebook

Eksplorator rozwiązań

C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace ContactManager.Models
{
    public static class SampleData
    {
        static Contact[] sampleContacts = new Contact[]
            {
                new Contact { ContactId = 1, Name = "Glenn Block", Address = "1 Microsoft Way", City = "Redmond", State = "WA", Zip = "98052", Email = "[email protected]", Twitter = "gblock" },
                new Contact { ContactId = 2, Name = "Howard Dierking", Address = "1 Microsoft Way", City = "Redmond", State = "WA", Zip = "98052", Email = "[email protected]", Twitter = "howard_dierking" },
                new Contact { ContactId = 3, Name = "Yavor Georgiev", Address = "1 Microsoft Way", City = "Redmond", State = "WA", Zip = "98052", Email = "[email protected]", Twitter = "digthepony" },
                new Contact { ContactId = 4, Name = "Jeff Handley", Address = "1 Microsoft Way", City = "Redmond", State = "WA", Zip = "98052", Email = "[email protected]", Twitter = "jeffhandley" },
                new Contact { ContactId = 5, Name = "Daniel Roth", Address = "1 Microsoft Way", City = "Redmond", State = "WA", Zip = "98052", Email = "[email protected]", Twitter = "danroth27" },
            };

        public static Contact[] Contacts
        {
            get
            {
                return sampleContacts;
            }
        }
    }
}