Skip to content
Permalink
57b6cbed1a
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
30 lines (24 sloc) 798 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using TeamDBAwesome.SqlService;
using TeamDBAwesome.Models;
using Newtonsoft.Json;
namespace TeamDBAwesome.Controllers
{
public class InvoiceTrackDataController : ApiController
{
public HttpResponseMessage Get(int invoiceId)
{
MySqlService dbService = new MySqlService();
List<Track> trackList = dbService.getInvoiceTracks(invoiceId);
string serialzed = JsonConvert.SerializeObject(trackList);
HttpResponseMessage message = new HttpResponseMessage(HttpStatusCode.OK);
message.Content = new StringContent(serialzed);
return message;
}
}
}