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(); }
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(); }
public Bill() { _product = new Product(); Products = new List <Product>(); _productEditor = new ProductEditor(); }
public Invoice() { _product = new Product(); Products = new List <Product>(); _productEditor = new ProductEditor(); }