yavsc/yavscModel/WorkFlow/Commande.cs

22 lines
393 B
C#

10 years ago
using System;
using Yavsc;
using SalesCatalog;
using SalesCatalog.Model;
using System.Collections.Specialized;
10 years ago
namespace Yavsc.Model.WorkFlow
{
public class Commande
{
public DateTime CreationDate { get; set; }
long Id { get; set; }
public Commande(long catid, long pref, NameValueCollection collection)
10 years ago
{
CreationDate = DateTime.Now;
//TODO save it and get the id
10 years ago
}
}
}