using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.Http;
using Yavsc.Model.WorkFlow;
using System.Collections.Specialized;
namespace Yavsc.ApiControllers
{
///
/// Basket controller.
///
public class BasketController : ApiController
{
///
/// The wfmgr.
///
protected WorkFlowManager wfmgr = null;
///
/// Initialize the specified controllerContext.
///
/// Controller context.
protected override void Initialize (System.Web.Http.Controllers.HttpControllerContext controllerContext)
{
base.Initialize (controllerContext);
wfmgr = new WorkFlowManager ();
}
[AcceptVerbs("GET")]
public long Create(string productId , NameValueCollection cmdParams)
{
throw new NotImplementedException ();
}
}
}