Skip to content
Permalink
94b4892d71
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
28 lines (23 sloc) 722 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 DropCustomPlaylistController : ApiController
{
// GET: api/GetCustomer
public HttpResponseMessage Get(int PlaylistID)
{
HttpResponseMessage message = new HttpResponseMessage(HttpStatusCode.OK);
MySqlService sql = new MySqlService();
int succ = sql.DropCustomPlaylist(PlaylistID);
message.Content = new StringContent(succ.ToString());
return message;
}
}
}