refactoring
parent
9a2098052d
commit
f3a2efa244
@ -1,17 +0,0 @@
|
|||||||
using System;
|
|
||||||
using SalesCatalog.Model;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace Yavsc.Basket
|
|
||||||
{
|
|
||||||
public class Basket
|
|
||||||
{
|
|
||||||
public Basket ()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Add(Product p)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,21 +0,0 @@
|
|||||||
using System;
|
|
||||||
using Yavsc;
|
|
||||||
using SalesCatalog;
|
|
||||||
using SalesCatalog.Model;
|
|
||||||
using System.Web.Mvc;
|
|
||||||
using System.Web;
|
|
||||||
using System.Text.RegularExpressions;
|
|
||||||
using System.IO;
|
|
||||||
using Yavsc.Controllers;
|
|
||||||
|
|
||||||
namespace Yavsc.Controllers
|
|
||||||
{
|
|
||||||
public class Commande
|
|
||||||
{
|
|
||||||
public Commande(FormCollection collection)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
using System;
|
||||||
|
using Yavsc;
|
||||||
|
using SalesCatalog;
|
||||||
|
using SalesCatalog.Model;
|
||||||
|
using System.Collections.Specialized;
|
||||||
|
|
||||||
|
namespace Yavsc.Model.WorkFlow
|
||||||
|
{
|
||||||
|
public class Commande
|
||||||
|
{
|
||||||
|
public Commande(NameValueCollection collection)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Reference in New Issue