public Reciept(string docId, string date, string provider, string client, string paymentName) : base(docId, date, provider, client)
 {
     PaymentName    = paymentName;
     _product       = new Product();
     Products       = new List <Product>();
     _productEditor = new ProductEditor();
 }
示例#2
0
 public Bill(string docId, string date, string provider, string client, string clientId) : base(docId, date, provider, client)
 {
     ClientId       = clientId;
     _product       = new Product();
     Products       = new List <Product>();
     _productEditor = new ProductEditor();
 }
 public Reciept()
 {
     _product       = new Product();
     Products       = new List <Product>();
     _productEditor = new ProductEditor();
 }
示例#4
0
 public Bill()
 {
     _product       = new Product();
     Products       = new List <Product>();
     _productEditor = new ProductEditor();
 }
 public Invoice()
 {
     _product       = new Product();
     Products       = new List <Product>();
     _productEditor = new ProductEditor();
 }