Skip to content
Permalink
fa534784b6
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
42 lines (26 sloc) 839 Bytes
using Newtonsoft.Json;
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 TestController : ApiController
{
// GET: api/Test
public HttpResponseMessage Get()
{
MySqlService sqlS = new MySqlService();
sqlS.GetPayTypes(7);
//Customer customer = sqlS.GetCustomer(3);
//return an OK with the int of the new user
HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);
//response.Content = new StringContent(serialized);
return response;
}
}
}