Skip to content
Permalink
adf00cf6db
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
25 lines (24 sloc) 732 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;
using Newtonsoft.Json;
namespace TeamDBAwesome.Controllers
{
public class GetEmployeeController : ApiController
{
public HttpResponseMessage Get(int personId)
{
HttpResponseMessage message = new HttpResponseMessage(HttpStatusCode.OK);
MySqlService sql = new MySqlService();
employee emp = sql.GetEmployee(personId);
string json = JsonConvert.SerializeObject(emp);
message.Content = new StringContent(json);
return message;
}
}
}