Skip to content
Permalink
5146755ac3
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 (21 sloc) 673 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using TeamDBAwesome.SqlService;
namespace TeamDBAwesome.Controllers
{
public class AddTrackOrderController : ApiController
{
public HttpResponseMessage Get(int trackId, int orderId)
{
MySqlService dbService = new MySqlService();
int result = dbService.AddTrackOrer(orderId, trackId);
HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);
response.Content = new StringContent(result.ToString());
return response;
}
}
}