public DataTable GetProductTransferRecordsListByTransferDescriptionTypeFromToDateRangeAndStatus()
        {
            ProductTransferRecordDAL productTransferRecord = new ProductTransferRecordDAL();

            try
            {
                LumexDBPlayer db = LumexDBPlayer.Start();
                DataTable dt = productTransferRecord.GetProductTransferRecordsListByTransferDescriptionTypeFromToDateRangeAndStatus(this, db);
                db.Stop();

                return dt;
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                productTransferRecord = null;
            }
        }