* style.css:

* Web.csproj:
* Web.config:
* Catalog.xml:
* Global.asax.cs:
* TestBinding.cs:
* IProvider.cs:
* yavscModel.csproj:
* WFManager.cs:
* BasketController.cs:
* WorkFlowController.cs:
* ITCPNpgsqlProvider.cs:
* IContentProvider.cs:
* WorkFlowProvider.csproj:
* NpgsqlContentProvider.cs:
* Provider.cs:
* ITContentProvider.csproj:
* FrontOfficeApiController.cs:
* ProviderCollection.cs:
* WorkflowConfiguration.cs:
* BlogProvidersConfigurationSection.cs: 

* IITContent.cs: Estimate creation
This commit is contained in:
Paul Schneider
2014-09-18 13:58:43 +02:00
parent fa93ce7fee
commit bba917dcc0
21 changed files with 381 additions and 91 deletions

View File

@ -7,6 +7,7 @@ using System.Web.Security;
namespace Yavsc.Controllers
{
// TODO should mostly be an API Controller
public class BasketController : Controller
{
public ActionResult Index()
@ -21,11 +22,12 @@ namespace Yavsc.Controllers
public ActionResult Create()
{
var user = Membership.GetUser ();
var username = (user != null)?user.UserName:Request.AnonymousID;
throw new NotImplementedException();
// var user = Membership.GetUser ();
// var username = (user != null)?user.UserName:Request.AnonymousID;
// get an existing basket
return View ();
//return View ();
}
[HttpPost]