Skip to content
Permalink
fd752dc9aa
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
39 lines (34 sloc) 809 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
namespace TeamDBAwesome.Controllers
{
public class AddPaymentController : ApiController
{
// GET: api/AddPayment
public IEnumerable<string> Get()
{
return new string[] { "value1", "value2" };
}
// GET: api/AddPayment/5
public string Get(int id)
{
return "value";
}
// POST: api/AddPayment
public void Post([FromBody]string value)
{
}
// PUT: api/AddPayment/5
public void Put(int id, [FromBody]string value)
{
}
// DELETE: api/AddPayment/5
public void Delete(int id)
{
}
}
}