##Motivation Practice and Improve on multiple skills simultaniously.
##Description Write an ASP.NET Web API that responds with JSON to the following actions. You may use LINQ or raw SQL statements when working with the data.
- Output all samples, their status, and the name of the user that created them.
- Output all samples with a given status.
- Output all samples created by any user that contains a given string in their name.
- Create a new sample with associated status and user. Return HTTP OK or an error.
##Assignment
- Build a data layers with multiple bounded contexts, a repository pattern, and interaction service using Entity Framework Code First and LINQ.
- Build a simple RESTful Web API.
- Build a MVC site using the interaction service.
- Recreate the MVC site using Microsoft ASP.NET SPA (with AngularJS and testing)
- Create Unit Tests using MOQ for the data layers.
##Progress Parts 1-3 are done and checked in the repository.