/// <summary>
        /// This method will return a list of objects representing all records in the table.
        /// </summary>
        ///
        /// <returns>list of objects of class BDSupplierAccount in the form of object of BDSupplierAccountCollection </returns>
        public BDSupplierAccountCollection SelectAll()
        {
            BDSupplierAccountCollection bDSupplierAccountCollection = new BDSupplierAccountCollection();

            foreach (POS.DataLayer.BDSupplierAccount _bDSupplierAccount in POS.DataLayer.BDSupplierAccountBase.SelectAll())
            {
                _bDSupplierAccountWCF = new BDSupplierAccount();

                _bDSupplierAccountWCF.SupplierAccountId = _bDSupplierAccount.SupplierAccountId;
                _bDSupplierAccountWCF.PurcaseInvoiceID  = _bDSupplierAccount.PurcaseInvoiceID;
                _bDSupplierAccountWCF.PurchaseDate      = _bDSupplierAccount.PurchaseDate;
                _bDSupplierAccountWCF.SupplierID        = _bDSupplierAccount.SupplierID;
                _bDSupplierAccountWCF.InvoiceNumber     = _bDSupplierAccount.InvoiceNumber;
                _bDSupplierAccountWCF.TotalPrice        = _bDSupplierAccount.TotalPrice;
                _bDSupplierAccountWCF.PaidAmount        = _bDSupplierAccount.PaidAmount;
                _bDSupplierAccountWCF.IsVoid            = _bDSupplierAccount.IsVoid;
                _bDSupplierAccountWCF.RemainingAmount   = _bDSupplierAccount.RemainingAmount;
                _bDSupplierAccountWCF.CreateDate        = _bDSupplierAccount.CreateDate;
                _bDSupplierAccountWCF.CreatedBy         = _bDSupplierAccount.CreatedBy;
                _bDSupplierAccountWCF.updateDate        = _bDSupplierAccount.updateDate;
                _bDSupplierAccountWCF.UpdatedBy         = _bDSupplierAccount.UpdatedBy;
                _bDSupplierAccountWCF.IsDeleted         = _bDSupplierAccount.IsDeleted;
                _bDSupplierAccountWCF.DeleteDate        = _bDSupplierAccount.DeleteDate;
                _bDSupplierAccountWCF.DeletedBy         = _bDSupplierAccount.DeletedBy;
                _bDSupplierAccountWCF.InvoiceType       = _bDSupplierAccount.InvoiceType;

                bDSupplierAccountCollection.Add(_bDSupplierAccountWCF);
            }
            return(bDSupplierAccountCollection);
        }
Exemplo n.º 2
0
		/// <summary>
		/// This method will return a list of objects representing all records in the table.
		/// </summary>
		///
		/// <returns>list of objects of class BDSupplierAccount in the form of object of BDSupplierAccountCollection </returns>
		public BDSupplierAccountCollection SelectAll()
		{
			BDSupplierAccountCollection bDSupplierAccountCollection = new BDSupplierAccountCollection();
			foreach (POS.DataLayer.BDSupplierAccount _bDSupplierAccount in POS.DataLayer.BDSupplierAccountBase.SelectAll())
			{
				_bDSupplierAccountWCF = new BDSupplierAccount();
				
				_bDSupplierAccountWCF.SupplierAccountId = _bDSupplierAccount.SupplierAccountId;
				_bDSupplierAccountWCF.PurcaseInvoiceID = _bDSupplierAccount.PurcaseInvoiceID;
				_bDSupplierAccountWCF.PurchaseDate = _bDSupplierAccount.PurchaseDate;
				_bDSupplierAccountWCF.SupplierID = _bDSupplierAccount.SupplierID;
				_bDSupplierAccountWCF.InvoiceNumber = _bDSupplierAccount.InvoiceNumber;
				_bDSupplierAccountWCF.TotalPrice = _bDSupplierAccount.TotalPrice;
				_bDSupplierAccountWCF.PaidAmount = _bDSupplierAccount.PaidAmount;
				_bDSupplierAccountWCF.IsVoid = _bDSupplierAccount.IsVoid;
				_bDSupplierAccountWCF.RemainingAmount = _bDSupplierAccount.RemainingAmount;
				_bDSupplierAccountWCF.CreateDate = _bDSupplierAccount.CreateDate;
				_bDSupplierAccountWCF.CreatedBy = _bDSupplierAccount.CreatedBy;
				_bDSupplierAccountWCF.updateDate = _bDSupplierAccount.updateDate;
				_bDSupplierAccountWCF.UpdatedBy = _bDSupplierAccount.UpdatedBy;
				_bDSupplierAccountWCF.IsDeleted = _bDSupplierAccount.IsDeleted;
				_bDSupplierAccountWCF.DeleteDate = _bDSupplierAccount.DeleteDate;
				_bDSupplierAccountWCF.DeletedBy = _bDSupplierAccount.DeletedBy;
				_bDSupplierAccountWCF.Depit = _bDSupplierAccount.Depit;
				_bDSupplierAccountWCF.Credit = _bDSupplierAccount.Credit;
				_bDSupplierAccountWCF.LstDayToPay = _bDSupplierAccount.LstDayToPay;
				_bDSupplierAccountWCF.ChequeNumber = _bDSupplierAccount.ChequeNumber;
				_bDSupplierAccountWCF.InvoiceType = _bDSupplierAccount.InvoiceType;
				
				bDSupplierAccountCollection.Add(_bDSupplierAccountWCF);
			}
			return bDSupplierAccountCollection;
		}
        /// <summary>
        /// This method will return a list of objects representing the specified number of entries from the specified record number in the table
        /// using the value of the field specified
        /// </summary>
        ///
        /// <param name="field" type="string">Field of the class BDSupplierAccount</param>
        /// <param name="fieldValue" type="object">Value for the field specified.</param>
        /// <param name="fieldValue2" type="object">Value for the field specified.</param>
        /// <param name="typeOperation" type="TypeOperation">Operator that is used if fieldValue2=null or fieldValue2="".</param>
        /// <param name="orderByStatement" type="string">The field value to number.</param>
        /// <param name="pageSize" type="int">Number of records returned.</param>
        /// <param name="skipPages" type="int">The number of missing pages.</param>
        ///
        /// <returns>List of object of class BDSupplierAccount in the form of an object of class BDSupplierAccountCollection</returns>
        public BDSupplierAccountCollection SelectByFieldPaged(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation, int pageSize, int skipPages, string orderByStatement)
        {
            BDSupplierAccountCollection bDSupplierAccountCollection = new BDSupplierAccountCollection();

            foreach (POS.DataLayer.BDSupplierAccount _bDSupplierAccount in POS.DataLayer.BDSupplierAccountBase.SelectByFieldPaged(field, fieldValue, fieldValue2, typeOperation, pageSize, skipPages, orderByStatement))
            {
                _bDSupplierAccountWCF = new BDSupplierAccount();

                _bDSupplierAccountWCF.SupplierAccountId = _bDSupplierAccount.SupplierAccountId;
                _bDSupplierAccountWCF.PurcaseInvoiceID  = _bDSupplierAccount.PurcaseInvoiceID;
                _bDSupplierAccountWCF.PurchaseDate      = _bDSupplierAccount.PurchaseDate;
                _bDSupplierAccountWCF.SupplierID        = _bDSupplierAccount.SupplierID;
                _bDSupplierAccountWCF.InvoiceNumber     = _bDSupplierAccount.InvoiceNumber;
                _bDSupplierAccountWCF.TotalPrice        = _bDSupplierAccount.TotalPrice;
                _bDSupplierAccountWCF.PaidAmount        = _bDSupplierAccount.PaidAmount;
                _bDSupplierAccountWCF.IsVoid            = _bDSupplierAccount.IsVoid;
                _bDSupplierAccountWCF.RemainingAmount   = _bDSupplierAccount.RemainingAmount;
                _bDSupplierAccountWCF.CreateDate        = _bDSupplierAccount.CreateDate;
                _bDSupplierAccountWCF.CreatedBy         = _bDSupplierAccount.CreatedBy;
                _bDSupplierAccountWCF.updateDate        = _bDSupplierAccount.updateDate;
                _bDSupplierAccountWCF.UpdatedBy         = _bDSupplierAccount.UpdatedBy;
                _bDSupplierAccountWCF.IsDeleted         = _bDSupplierAccount.IsDeleted;
                _bDSupplierAccountWCF.DeleteDate        = _bDSupplierAccount.DeleteDate;
                _bDSupplierAccountWCF.DeletedBy         = _bDSupplierAccount.DeletedBy;
                _bDSupplierAccountWCF.InvoiceType       = _bDSupplierAccount.InvoiceType;

                bDSupplierAccountCollection.Add(_bDSupplierAccountWCF);
            }
            return(bDSupplierAccountCollection);
        }
        /// <summary>
        /// This method will get row(s) from the database using the value of the field specified
        /// along with the details of the child table.
        /// </summary>
        ///
        /// <param name="pk" type="PURPurchaseHeaderPrimaryKey">Primary Key information based on which data is to be fetched.</param>
        /// <param name="pageSize" type="int">Number of records returned.</param>
        /// <param name="skipPages" type="int">The number of missing pages.</param>
        /// <param name="orderByStatement" type="string">The field value to number.</param>
        ///
        /// <returns>object of class BDSupplierAccountCollection</returns>
        public BDSupplierAccountCollection SelectAllByForeignKeyPurcaseInvoiceIDPaged(PURPurchaseHeaderPrimaryKey pk, int pageSize, int skipPages, string orderByStatement)
        {
            BDSupplierAccountCollection bDSupplierAccountCollection = new BDSupplierAccountCollection();

            foreach (POS.DataLayer.BDSupplierAccount _bDSupplierAccount in POS.DataLayer.BDSupplierAccountBase.SelectAllByForeignKeyPurcaseInvoiceIDPaged(new POS.DataLayer.PURPurchaseHeaderPrimaryKey(pk.PurcaseHeaderID), pageSize, skipPages, orderByStatement))
            {
                _bDSupplierAccountWCF = new BDSupplierAccount();
                _bDSupplierAccountWCF.SupplierAccountId = _bDSupplierAccount.SupplierAccountId;
                _bDSupplierAccountWCF.PurcaseInvoiceID  = _bDSupplierAccount.PurcaseInvoiceID;
                _bDSupplierAccountWCF.PurchaseDate      = _bDSupplierAccount.PurchaseDate;
                _bDSupplierAccountWCF.SupplierID        = _bDSupplierAccount.SupplierID;
                _bDSupplierAccountWCF.InvoiceNumber     = _bDSupplierAccount.InvoiceNumber;
                _bDSupplierAccountWCF.TotalPrice        = _bDSupplierAccount.TotalPrice;
                _bDSupplierAccountWCF.PaidAmount        = _bDSupplierAccount.PaidAmount;
                _bDSupplierAccountWCF.IsVoid            = _bDSupplierAccount.IsVoid;
                _bDSupplierAccountWCF.RemainingAmount   = _bDSupplierAccount.RemainingAmount;
                _bDSupplierAccountWCF.CreateDate        = _bDSupplierAccount.CreateDate;
                _bDSupplierAccountWCF.CreatedBy         = _bDSupplierAccount.CreatedBy;
                _bDSupplierAccountWCF.updateDate        = _bDSupplierAccount.updateDate;
                _bDSupplierAccountWCF.UpdatedBy         = _bDSupplierAccount.UpdatedBy;
                _bDSupplierAccountWCF.IsDeleted         = _bDSupplierAccount.IsDeleted;
                _bDSupplierAccountWCF.DeleteDate        = _bDSupplierAccount.DeleteDate;
                _bDSupplierAccountWCF.DeletedBy         = _bDSupplierAccount.DeletedBy;
                _bDSupplierAccountWCF.InvoiceType       = _bDSupplierAccount.InvoiceType;

                bDSupplierAccountCollection.Add(_bDSupplierAccountWCF);
            }
            return(bDSupplierAccountCollection);
        }
Exemplo n.º 5
0
        /// <summary>
        /// This method will return a list of objects representing the specified number of entries from the specified record number in the table.
        /// </summary>
        ///
        /// <param name="pageSize" type="int">Number of records returned.</param>
        /// <param name="skipPages" type="int">The number of missing pages.</param>
        /// <param name="orderByStatement" type="string">The field value to number.</param>
        ///
        /// <returns>list of objects of class BDSupplierAccount in the form of an object of class BDSupplierAccountCollection </returns>
        public BDSupplierAccountCollection SelectAllPaged(int?pageSize, int?skipPages, string orderByStatement)
        {
            BDSupplierAccountCollection bDSupplierAccountCollection = new BDSupplierAccountCollection();

            foreach (POS.DataLayer.BDSupplierAccount _bDSupplierAccount in POS.DataLayer.BDSupplierAccountBase.SelectAllPaged(pageSize, skipPages, orderByStatement))
            {
                _bDSupplierAccountWCF = new BDSupplierAccount();

                _bDSupplierAccountWCF.SupplierAccountId = _bDSupplierAccount.SupplierAccountId;
                _bDSupplierAccountWCF.PurcaseInvoiceID  = _bDSupplierAccount.PurcaseInvoiceID;
                _bDSupplierAccountWCF.PurchaseDate      = _bDSupplierAccount.PurchaseDate;
                _bDSupplierAccountWCF.SupplierID        = _bDSupplierAccount.SupplierID;
                _bDSupplierAccountWCF.InvoiceNumber     = _bDSupplierAccount.InvoiceNumber;
                _bDSupplierAccountWCF.TotalPrice        = _bDSupplierAccount.TotalPrice;
                _bDSupplierAccountWCF.PaidAmount        = _bDSupplierAccount.PaidAmount;
                _bDSupplierAccountWCF.IsVoid            = _bDSupplierAccount.IsVoid;
                _bDSupplierAccountWCF.RemainingAmount   = _bDSupplierAccount.RemainingAmount;
                _bDSupplierAccountWCF.CreateDate        = _bDSupplierAccount.CreateDate;
                _bDSupplierAccountWCF.CreatedBy         = _bDSupplierAccount.CreatedBy;
                _bDSupplierAccountWCF.updateDate        = _bDSupplierAccount.updateDate;
                _bDSupplierAccountWCF.UpdatedBy         = _bDSupplierAccount.UpdatedBy;
                _bDSupplierAccountWCF.IsDeleted         = _bDSupplierAccount.IsDeleted;
                _bDSupplierAccountWCF.DeleteDate        = _bDSupplierAccount.DeleteDate;
                _bDSupplierAccountWCF.DeletedBy         = _bDSupplierAccount.DeletedBy;
                _bDSupplierAccountWCF.Depit             = _bDSupplierAccount.Depit;
                _bDSupplierAccountWCF.Credit            = _bDSupplierAccount.Credit;
                _bDSupplierAccountWCF.LstDayToPay       = _bDSupplierAccount.LstDayToPay;
                _bDSupplierAccountWCF.ChequeNumber      = _bDSupplierAccount.ChequeNumber;
                _bDSupplierAccountWCF.InvoiceType       = _bDSupplierAccount.InvoiceType;

                bDSupplierAccountCollection.Add(_bDSupplierAccountWCF);
            }
            return(bDSupplierAccountCollection);
        }
Exemplo n.º 6
0
        /// <summary>
        /// This method will get row(s) from the database using the value of the field specified
        /// along with the details of the child table.
        /// </summary>
        ///
        /// <param name="pk" type="PURPurchaseHeaderPrimaryKey">Primary Key information based on which data is to be fetched.</param>
        ///
        /// <returns>object of class BDSupplierAccountCollection</returns>
        public BDSupplierAccountCollection SelectAllByForeignKeyPurcaseInvoiceID(PURPurchaseHeaderPrimaryKey pk)
        {
            BDSupplierAccountCollection bDSupplierAccountCollection = new BDSupplierAccountCollection();

            foreach (POS.DataLayer.BDSupplierAccount _bDSupplierAccount in POS.DataLayer.BDSupplierAccountBase.SelectAllByForeignKeyPurcaseInvoiceID(new POS.DataLayer.PURPurchaseHeaderPrimaryKey(pk.PurcaseHeaderID)))
            {
                _bDSupplierAccountWCF = new BDSupplierAccount();
                _bDSupplierAccountWCF.SupplierAccountId = _bDSupplierAccount.SupplierAccountId;
                _bDSupplierAccountWCF.PurcaseInvoiceID  = _bDSupplierAccount.PurcaseInvoiceID;
                _bDSupplierAccountWCF.PurchaseDate      = _bDSupplierAccount.PurchaseDate;
                _bDSupplierAccountWCF.SupplierID        = _bDSupplierAccount.SupplierID;
                _bDSupplierAccountWCF.InvoiceNumber     = _bDSupplierAccount.InvoiceNumber;
                _bDSupplierAccountWCF.TotalPrice        = _bDSupplierAccount.TotalPrice;
                _bDSupplierAccountWCF.PaidAmount        = _bDSupplierAccount.PaidAmount;
                _bDSupplierAccountWCF.IsVoid            = _bDSupplierAccount.IsVoid;
                _bDSupplierAccountWCF.RemainingAmount   = _bDSupplierAccount.RemainingAmount;
                _bDSupplierAccountWCF.CreateDate        = _bDSupplierAccount.CreateDate;
                _bDSupplierAccountWCF.CreatedBy         = _bDSupplierAccount.CreatedBy;
                _bDSupplierAccountWCF.updateDate        = _bDSupplierAccount.updateDate;
                _bDSupplierAccountWCF.UpdatedBy         = _bDSupplierAccount.UpdatedBy;
                _bDSupplierAccountWCF.IsDeleted         = _bDSupplierAccount.IsDeleted;
                _bDSupplierAccountWCF.DeleteDate        = _bDSupplierAccount.DeleteDate;
                _bDSupplierAccountWCF.DeletedBy         = _bDSupplierAccount.DeletedBy;
                _bDSupplierAccountWCF.Depit             = _bDSupplierAccount.Depit;
                _bDSupplierAccountWCF.Credit            = _bDSupplierAccount.Credit;
                _bDSupplierAccountWCF.LstDayToPay       = _bDSupplierAccount.LstDayToPay;
                _bDSupplierAccountWCF.ChequeNumber      = _bDSupplierAccount.ChequeNumber;
                _bDSupplierAccountWCF.InvoiceType       = _bDSupplierAccount.InvoiceType;

                bDSupplierAccountCollection.Add(_bDSupplierAccountWCF);
            }
            return(bDSupplierAccountCollection);
        }
Exemplo n.º 7
0
        /// <summary>
        /// This method will get row(s) from the database using the value of the field specified
        /// </summary>
        ///
        /// <param name="field" type="string">Field of the class BDSupplierAccount</param>
        /// <param name="fieldValue" type="object">Value for the field specified.</param>
        /// <param name="fieldValue2" type="object">Value for the field specified.</param>
        /// <param name="typeOperation" type="TypeOperation">Operator that is used if fieldValue2=null or fieldValue2="".</param>
        ///
        /// <returns>List of object of class BDSupplierAccount in the form of an object of class BDSupplierAccountCollection</returns>
        public BDSupplierAccountCollection SelectByField(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation)
        {
            BDSupplierAccountCollection bDSupplierAccountCollection = new BDSupplierAccountCollection();

            foreach (POS.DataLayer.BDSupplierAccount _bDSupplierAccount in POS.DataLayer.BDSupplierAccountBase.SelectByField(field, fieldValue, fieldValue2, typeOperation))
            {
                _bDSupplierAccountWCF = new BDSupplierAccount();

                _bDSupplierAccountWCF.SupplierAccountId = _bDSupplierAccount.SupplierAccountId;
                _bDSupplierAccountWCF.PurcaseInvoiceID  = _bDSupplierAccount.PurcaseInvoiceID;
                _bDSupplierAccountWCF.PurchaseDate      = _bDSupplierAccount.PurchaseDate;
                _bDSupplierAccountWCF.SupplierID        = _bDSupplierAccount.SupplierID;
                _bDSupplierAccountWCF.InvoiceNumber     = _bDSupplierAccount.InvoiceNumber;
                _bDSupplierAccountWCF.TotalPrice        = _bDSupplierAccount.TotalPrice;
                _bDSupplierAccountWCF.PaidAmount        = _bDSupplierAccount.PaidAmount;
                _bDSupplierAccountWCF.IsVoid            = _bDSupplierAccount.IsVoid;
                _bDSupplierAccountWCF.RemainingAmount   = _bDSupplierAccount.RemainingAmount;
                _bDSupplierAccountWCF.CreateDate        = _bDSupplierAccount.CreateDate;
                _bDSupplierAccountWCF.CreatedBy         = _bDSupplierAccount.CreatedBy;
                _bDSupplierAccountWCF.updateDate        = _bDSupplierAccount.updateDate;
                _bDSupplierAccountWCF.UpdatedBy         = _bDSupplierAccount.UpdatedBy;
                _bDSupplierAccountWCF.IsDeleted         = _bDSupplierAccount.IsDeleted;
                _bDSupplierAccountWCF.DeleteDate        = _bDSupplierAccount.DeleteDate;
                _bDSupplierAccountWCF.DeletedBy         = _bDSupplierAccount.DeletedBy;
                _bDSupplierAccountWCF.Depit             = _bDSupplierAccount.Depit;
                _bDSupplierAccountWCF.Credit            = _bDSupplierAccount.Credit;
                _bDSupplierAccountWCF.LstDayToPay       = _bDSupplierAccount.LstDayToPay;
                _bDSupplierAccountWCF.ChequeNumber      = _bDSupplierAccount.ChequeNumber;
                _bDSupplierAccountWCF.InvoiceType       = _bDSupplierAccount.InvoiceType;

                bDSupplierAccountCollection.Add(_bDSupplierAccountWCF);
            }
            return(bDSupplierAccountCollection);
        }
Exemplo n.º 8
0
		/// <summary>
		/// This method will return a list of objects representing the specified number of entries from the specified record number in the table 
		/// using the value of the field specified
		/// </summary>
		///
		/// <param name="field" type="string">Field of the class BDSupplierAccount</param>
		/// <param name="fieldValue" type="object">Value for the field specified.</param>
		/// <param name="fieldValue2" type="object">Value for the field specified.</param>
		/// <param name="typeOperation" type="TypeOperation">Operator that is used if fieldValue2=null or fieldValue2="".</param>
		/// <param name="orderByStatement" type="string">The field value to number.</param>
		/// <param name="pageSize" type="int">Number of records returned.</param>
		/// <param name="skipPages" type="int">The number of missing pages.</param>
		///
		/// <returns>List of object of class BDSupplierAccount in the form of an object of class BDSupplierAccountCollection</returns>
		public BDSupplierAccountCollection SelectByFieldPaged(string field, object fieldValue, object fieldValue2, TypeOperation typeOperation, int pageSize, int skipPages, string orderByStatement)
		{
			BDSupplierAccountCollection bDSupplierAccountCollection = new BDSupplierAccountCollection();
			foreach (POS.DataLayer.BDSupplierAccount _bDSupplierAccount in POS.DataLayer.BDSupplierAccountBase.SelectByFieldPaged(field, fieldValue, fieldValue2, typeOperation, pageSize, skipPages, orderByStatement))
			{
				_bDSupplierAccountWCF = new BDSupplierAccount();
				
				_bDSupplierAccountWCF.SupplierAccountId = _bDSupplierAccount.SupplierAccountId;
				_bDSupplierAccountWCF.PurcaseInvoiceID = _bDSupplierAccount.PurcaseInvoiceID;
				_bDSupplierAccountWCF.PurchaseDate = _bDSupplierAccount.PurchaseDate;
				_bDSupplierAccountWCF.SupplierID = _bDSupplierAccount.SupplierID;
				_bDSupplierAccountWCF.InvoiceNumber = _bDSupplierAccount.InvoiceNumber;
				_bDSupplierAccountWCF.TotalPrice = _bDSupplierAccount.TotalPrice;
				_bDSupplierAccountWCF.PaidAmount = _bDSupplierAccount.PaidAmount;
				_bDSupplierAccountWCF.IsVoid = _bDSupplierAccount.IsVoid;
				_bDSupplierAccountWCF.RemainingAmount = _bDSupplierAccount.RemainingAmount;
				_bDSupplierAccountWCF.CreateDate = _bDSupplierAccount.CreateDate;
				_bDSupplierAccountWCF.CreatedBy = _bDSupplierAccount.CreatedBy;
				_bDSupplierAccountWCF.updateDate = _bDSupplierAccount.updateDate;
				_bDSupplierAccountWCF.UpdatedBy = _bDSupplierAccount.UpdatedBy;
				_bDSupplierAccountWCF.IsDeleted = _bDSupplierAccount.IsDeleted;
				_bDSupplierAccountWCF.DeleteDate = _bDSupplierAccount.DeleteDate;
				_bDSupplierAccountWCF.DeletedBy = _bDSupplierAccount.DeletedBy;
				_bDSupplierAccountWCF.Depit = _bDSupplierAccount.Depit;
				_bDSupplierAccountWCF.Credit = _bDSupplierAccount.Credit;
				_bDSupplierAccountWCF.LstDayToPay = _bDSupplierAccount.LstDayToPay;
				_bDSupplierAccountWCF.ChequeNumber = _bDSupplierAccount.ChequeNumber;
				_bDSupplierAccountWCF.InvoiceType = _bDSupplierAccount.InvoiceType;
				
				bDSupplierAccountCollection.Add(_bDSupplierAccountWCF);
			}
			return bDSupplierAccountCollection;
		}
Exemplo n.º 9
0
		/// <summary>
		/// This method will get row(s) from the database using the value of the field specified 
		/// along with the details of the child table.
		/// </summary>
		///
		/// <param name="pk" type="PURPurchaseHeaderPrimaryKey">Primary Key information based on which data is to be fetched.</param>
		/// <param name="pageSize" type="int">Number of records returned.</param>
		/// <param name="skipPages" type="int">The number of missing pages.</param>
		/// <param name="orderByStatement" type="string">The field value to number.</param>
		///
		/// <returns>object of class BDSupplierAccountCollection</returns>
		public BDSupplierAccountCollection SelectAllByForeignKeyPurcaseInvoiceIDPaged(PURPurchaseHeaderPrimaryKey pk, int pageSize, int skipPages, string orderByStatement)
		{
			BDSupplierAccountCollection bDSupplierAccountCollection=new BDSupplierAccountCollection();
			foreach (POS.DataLayer.BDSupplierAccount _bDSupplierAccount in POS.DataLayer.BDSupplierAccountBase.SelectAllByForeignKeyPurcaseInvoiceIDPaged(new POS.DataLayer.PURPurchaseHeaderPrimaryKey(pk.PurcaseHeaderID), pageSize, skipPages, orderByStatement))
			{
				_bDSupplierAccountWCF = new BDSupplierAccount();
				_bDSupplierAccountWCF.SupplierAccountId = _bDSupplierAccount.SupplierAccountId;
				_bDSupplierAccountWCF.PurcaseInvoiceID = _bDSupplierAccount.PurcaseInvoiceID;
				_bDSupplierAccountWCF.PurchaseDate = _bDSupplierAccount.PurchaseDate;
				_bDSupplierAccountWCF.SupplierID = _bDSupplierAccount.SupplierID;
				_bDSupplierAccountWCF.InvoiceNumber = _bDSupplierAccount.InvoiceNumber;
				_bDSupplierAccountWCF.TotalPrice = _bDSupplierAccount.TotalPrice;
				_bDSupplierAccountWCF.PaidAmount = _bDSupplierAccount.PaidAmount;
				_bDSupplierAccountWCF.IsVoid = _bDSupplierAccount.IsVoid;
				_bDSupplierAccountWCF.RemainingAmount = _bDSupplierAccount.RemainingAmount;
				_bDSupplierAccountWCF.CreateDate = _bDSupplierAccount.CreateDate;
				_bDSupplierAccountWCF.CreatedBy = _bDSupplierAccount.CreatedBy;
				_bDSupplierAccountWCF.updateDate = _bDSupplierAccount.updateDate;
				_bDSupplierAccountWCF.UpdatedBy = _bDSupplierAccount.UpdatedBy;
				_bDSupplierAccountWCF.IsDeleted = _bDSupplierAccount.IsDeleted;
				_bDSupplierAccountWCF.DeleteDate = _bDSupplierAccount.DeleteDate;
				_bDSupplierAccountWCF.DeletedBy = _bDSupplierAccount.DeletedBy;
				_bDSupplierAccountWCF.Depit = _bDSupplierAccount.Depit;
				_bDSupplierAccountWCF.Credit = _bDSupplierAccount.Credit;
				_bDSupplierAccountWCF.LstDayToPay = _bDSupplierAccount.LstDayToPay;
				_bDSupplierAccountWCF.ChequeNumber = _bDSupplierAccount.ChequeNumber;
				_bDSupplierAccountWCF.InvoiceType = _bDSupplierAccount.InvoiceType;
				
				bDSupplierAccountCollection.Add(_bDSupplierAccountWCF);
			}
			return bDSupplierAccountCollection;
		}