yavsc/yavscModel/WorkFlow/Commande.cs

21 lines
393 B
C#
Raw Normal View History

2014-10-06 04:58:47 +02:00
using System;
using Yavsc;
using SalesCatalog;
using SalesCatalog.Model;
using System.Collections.Specialized;
2014-10-06 04:58:47 +02:00
namespace Yavsc.Model.WorkFlow
{
public class Commande
{
public DateTime CreationDate { get; set; }
long Id { get; set; }
public Commande(long catid, long pref, NameValueCollection collection)
2014-10-06 04:58:47 +02:00
{
CreationDate = DateTime.Now;
//TODO save it and get the id
2014-10-06 04:58:47 +02:00
}
}
}