├── src ├── EmailContacts │ ├── Global.asax │ ├── Content │ │ ├── splash.png │ │ ├── rabbitmq-inq.png │ │ ├── html-validation.png │ │ ├── default.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap-theme.css │ │ └── bootstrap-theme.css.map │ ├── Views │ │ ├── GetContact.cshtml │ │ └── Shared │ │ │ └── _Layout.cshtml │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── Properties │ │ ├── PublishProfiles │ │ │ └── WebDeploy.pubxml │ │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── info.cshtml │ ├── Global.asax.cs │ ├── Web.config │ ├── EmailContacts.csproj │ ├── default.cshtml │ └── Scripts │ │ └── bootstrap.min.js ├── EmailContacts.ServiceModel │ ├── Emails.cs │ ├── Query.cs │ ├── Types │ │ ├── Contact.cs │ │ └── Email.cs │ ├── Contacts.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── EmailContacts.ServiceModel.csproj ├── EmailContacts.ServiceInterface │ ├── SmtpConfig.cs │ ├── IEmailer.cs │ ├── EmailServices.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ContactsServices.cs │ └── EmailContacts.ServiceInterface.csproj ├── packages │ └── repositories.config ├── EmailContacts.Tests │ ├── app.config │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UnitTests.cs │ ├── IntegrationTests.cs │ └── EmailContacts.Tests.csproj └── EmailContacts.sln ├── .gitattributes └── .gitignore /src/EmailContacts/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="EmailContacts.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /src/EmailContacts/Content/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/EmailContacts/HEAD/src/EmailContacts/Content/splash.png -------------------------------------------------------------------------------- /src/EmailContacts/Content/rabbitmq-inq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/EmailContacts/HEAD/src/EmailContacts/Content/rabbitmq-inq.png -------------------------------------------------------------------------------- /src/EmailContacts/Content/html-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/EmailContacts/HEAD/src/EmailContacts/Content/html-validation.png -------------------------------------------------------------------------------- /src/EmailContacts/Views/GetContact.cshtml: -------------------------------------------------------------------------------- 1 | @model Contact 2 | 3 |