* T.cs: * IModule.cs: * App.master: * IProvider.cs: * Error.aspx: * AOEMail.aspx: * Login.aspx: * Index.aspx: * Admin.aspx: * yavscModel.csproj: * WFManager.cs: * Index.aspx: * AddRole.aspx: * Profile.aspx: * Edit.aspx: * Register.aspx: * Index.aspx: * RoleList.aspx: * UserList.aspx: * Validate.aspx: * RemovePost.aspx: * Index.aspx: * BasketImpact.cs: * Brand.aspx: * Delete.aspx: * Create.aspx: * Backups.aspx: * HomeController.cs: * BlogManager.cs: * Restore.aspx: * Details.aspx: * TitleNotFound.aspx: * Product.aspx: * AdminController.cs: * Command.aspx: * Service.aspx: * BlogProvider.cs: * NewProject.aspx: * Catalog.aspx: * Restored.aspx: * BasketController.cs: * AccountController.cs: * WorkFlowController.cs: * BlogsApiController.cs: * ChangePassword.aspx: * RemoveRoleQuery.aspx: * CreateBackup.aspx: * IContentProvider.cs: * BackOfficeController.cs: * FrontOfficeController.cs: * NpgsqlBlogProvider.cs: * NpgsqlContentProvider.cs: * RegistrationPending.aspx: * ProductCategory.aspx: * FrontOfficeApiController.cs: * ChangePasswordSuccess.aspx: * ReferenceNotFound.aspx: * BackupCreated.aspx Fixes many HTTP 500 Refactoring on the go
55 lines
No EOL
1.4 KiB
C#
55 lines
No EOL
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Security;
|
|
using System.Web.Http;
|
|
using yavscModel.WorkFlow;
|
|
|
|
namespace Yavsc.ApiControllers
|
|
{
|
|
// TODO should mostly be an API Controller
|
|
public class BasketController : ApiController
|
|
{
|
|
/// <summary>
|
|
/// Validates the order.
|
|
///
|
|
/// </summary>
|
|
/// <returns><c>true</c>, if order was validated, <c>false</c> otherwise.</returns>
|
|
/// <param name="orderid">Orderid.</param>
|
|
bool ValidateOrder(long orderid) {
|
|
throw new NotImplementedException ();
|
|
}
|
|
|
|
long CreateOrder(string title,string mesg)
|
|
{
|
|
throw new NotImplementedException ();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds to basket, a product from the catalog, in the user's session.
|
|
/// </summary>
|
|
/// <returns>The to basket.</returns>
|
|
[HttpGet]
|
|
public long AddToOrder (long orderid, string prodref,int count, object prodparams=null)
|
|
{
|
|
//TODO find the basket for Membership.GetUser().UserName
|
|
//return WFManager.Write(estid << from the basket, desc, ucost, count, productid);
|
|
throw new NotImplementedException ();
|
|
}
|
|
|
|
[HttpGet]
|
|
[Authorize]
|
|
public Estimate[] YourEstimates()
|
|
{
|
|
return WorkFlowProvider.WFManager.GetEstimates (
|
|
Membership.GetUser().UserName);
|
|
}
|
|
|
|
[HttpGet]
|
|
public object Order (BasketImpact bi)
|
|
{
|
|
return new { c="lmk,", message="Panier impacté", impactRef=bi.ProductRef, count=bi.Count};
|
|
}
|
|
}
|
|
} |