BeWoWebApi für den neuen Mobilklient BeWoPlanerMobil: .NET Version auf 4.7.2 gesetzt. GetState im Mobilklienten Abwesenheiten im Mobilklienten auskommentiert
40 lines
775 B
C#
40 lines
775 B
C#
using System.Collections.Generic;
|
|
using System.Web.Http;
|
|
|
|
|
|
namespace BeWoWebApi.Controllers
|
|
{
|
|
|
|
public class BeWoUserWebApiController : BeWoWebApiBaseController
|
|
{
|
|
// GET: api/BeWoUserWebApi
|
|
public IEnumerable<string> Get()
|
|
{
|
|
|
|
|
|
return new string[] { "value1", "value2" };
|
|
}
|
|
|
|
// GET: api/BeWoUserWebApi/5
|
|
public string Get(int id)
|
|
{
|
|
return "value";
|
|
}
|
|
|
|
// POST: api/BeWoUserWebApi
|
|
public void Post([FromBody]string value)
|
|
{
|
|
}
|
|
|
|
// PUT: api/BeWoUserWebApi/5
|
|
public void Put(int id, [FromBody]string value)
|
|
{
|
|
}
|
|
|
|
// DELETE: api/BeWoUserWebApi/5
|
|
public void Delete(int id)
|
|
{
|
|
}
|
|
}
|
|
}
|