Skip to content
Permalink
25c5fc97c2
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
31 lines (28 sloc) 995 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using TeamDBAwesome.Models;
using TeamDBAwesome.SqlService;
namespace TeamDBAwesome.Controllers
{
public class UpdateCustomerController : 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 Post([FromBody] Customer customer)
{
MySqlService dbService = new MySqlService();
dbService.UpdateCustomer(customer);
HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);
response.Content = new StringContent("0");
return response;
}
}
}