You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
347 B
19 lines
347 B
using EasyBL.WEBAPP.SYS;
|
|
using System.Net.Http;
|
|
using System.Web.Http;
|
|
|
|
namespace WebApp.Controllers
|
|
{
|
|
public class VenueController : ApiController
|
|
{
|
|
|
|
|
|
[HttpGet]
|
|
public HttpResponseMessage venue(string Lang, string VenueID)
|
|
{
|
|
return new VenueService().GetOneVenue(Lang, VenueID);
|
|
}
|
|
|
|
|
|
}
|
|
}
|