Skip to content

Commit

Permalink
removed models I don't want yet
Browse files Browse the repository at this point in the history
set content on stub and description
  • Loading branch information
Jeremy Mill committed Nov 3, 2015
1 parent b1707c9 commit d491318
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 127 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,15 @@ namespace TeamDBAwesome.Controllers
public class NewCustomerController : ApiController
{
// GET api/NewCustomer/a JSON object rep of a customer
/// <summary>
/// Adds new customer to the Database
/// </summary>
/// <param name="customer">an instance of the customer data model</param>
/// <returns>a response with OK and the body is the new customer ID</returns>
public HttpResponseMessage Get(Customer customer)
{
HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);
response.Content = new StringContent("5";)
return response;
}

Expand Down
17 changes: 0 additions & 17 deletions TeamDBAwesome/TeamDBAwesome/Models/Album.cs

This file was deleted.

14 changes: 0 additions & 14 deletions TeamDBAwesome/TeamDBAwesome/Models/Artist.cs

This file was deleted.

65 changes: 0 additions & 65 deletions TeamDBAwesome/TeamDBAwesome/Models/Employee.cs

This file was deleted.

31 changes: 0 additions & 31 deletions TeamDBAwesome/TeamDBAwesome/Models/Track.cs

This file was deleted.

0 comments on commit d491318

Please sign in to comment.