/// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(CurrentIncomeCollection currentincomecollection, System.Data.DataSet data)
        {
            // Do nothing if we have nothing
            if (data == null || data.Tables.Count == 0 || data.Tables[0].Rows.Count == 0)
            {
                return;
            }


            // Create a local variable for the new instance.
            CurrentIncome newobj = null;

            // Create a local variable for the data row instance.
            System.Data.DataRow dr = null;


            // Iterate through the table rows
            for (int i = 0; i < data.Tables[0].Rows.Count; i++)
            {
                // Get a reference to the data row
                dr = data.Tables[0].Rows[i];
                // Create a new object instance
                newobj = System.Activator.CreateInstance(currentincomecollection.ContainsType[0]) as CurrentIncome;
                // Let the instance set its own members
                newobj.SetMembers(ref dr);
                // Add the new object to the collection instance
                currentincomecollection.Add(newobj);
            }
        }
        /// <summary>
        /// Fill method for populating an entire collection of CurrentIncomeCollection
        /// </summary>
        public virtual void Fill(CurrentIncomeCollection currentIncomeCollection)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(CurrentIncome.GetConnectionString());


            try
            {
                using (cnn)
                {
                    // open the connection
                    cnn.Open();


                    // create an instance of the reader to fill.
                    SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectCurrentIncomeCollection");


                    // Send the collection and data to the object factory
                    CreateObjectsFromData(currentIncomeCollection, datareader);


                    // close the connection
                    cnn.Close();
                }


                // nullify the connection
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
        /// <summary>
        /// Deletes the object.
        /// </summary>
        public virtual void Delete(CurrentIncome deleteObject)
        {
            // create a new instance of the connection
            SqlConnection cnn = new SqlConnection(CurrentIncome.GetConnectionString());
            // create local variable array for the sql parameters
            SqlParameterHash sqlparams = null;


            try
            {
                // discover the parameters
                sqlparams = SqlHelperParameterCache.GetSpParameterSet(CurrentIncome.GetConnectionString(), "gsp_DeleteCurrentIncome");


                // Store the parameter for the Id attribute.
                sqlparams["@id"].Value = deleteObject.Id;


                using (cnn)
                {
                    // open the connection
                    cnn.Open();


                    // Execute the stored proc to perform the delete on the instance.
                    SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_DeleteCurrentIncome", sqlparams);


                    // close the connection after usage
                    cnn.Close();
                }


                // nullify the connection var
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }


            // nullify the reference
            deleteObject = null;
        }
        /// <summary>
        /// Fill method for populating a collection by IncomeType
        /// </summary>
        public void FillByIncomeType(CurrentIncomeCollection currentIncomeCollection, System.Int16 id)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(CurrentIncome.GetConnectionString());


            try
            {
                // discover the sql parameters
                SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(CurrentIncome.GetConnectionString(), "gsp_SelectCurrentIncomeCollectionByIncomeType");


                using (cnn)
                {
                    // open the connection
                    cnn.Open();


                    // set the parameters
                    sqlparams["@incomeType"].Value = id;


                    // create an instance of the reader to fill.
                    SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectCurrentIncomeCollectionByIncomeType", sqlparams);


                    // Send the collection and data to the object factory.
                    CreateObjectsFromData(currentIncomeCollection, datareader);


                    // close the connection
                    cnn.Close();
                }


                // nullify the connection
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
        /// <summary>
        /// Fills a single instance with data based on its primary key values.
        /// </summary>
        public virtual void Fill(CurrentIncome currentincome, System.Int64 id)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(CurrentIncome.GetConnectionString());

            try
            {
                // discover the sql parameters
                SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(CurrentIncome.GetConnectionString(), "gsp_SelectCurrentIncome");


                using (cnn)
                {
                    // open the connection
                    cnn.Open();


                    // set the parameters
                    sqlparams["@id"].Value = id;


                    // create an instance of the reader to fill.
                    SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectCurrentIncome", sqlparams);


                    if (datareader.Read())
                    {
                        currentincome.SetMembers(ref datareader);
                    }


                    cnn.Close();                     // close the connection
                }


                // nullify the connection var
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
        public void Save()
        {
            var             realm  = Realm.GetInstance();
            SourcesOfIncome income = new SourcesOfIncome
            {
                SourceOfIncome_Id = rand.Next(1, 100000),
                SourceName        = (string)EnteringSourcePicker,
                SourceComment     = EnteringComent
            };

            CurrentIncome currentIncome = new CurrentIncome
            {
                Income_Id     = rand.Next(1, 100000),
                IncomeDate    = System.DateTime.Now.ToString(),
                IncomeSources = income,
                IncomeSum     = Convert.ToDouble(Sum)
            };

            if (tempId == 0)
            {
                realm.Write(() =>
                {
                    realm.Add(currentIncome);
                });
            }
            else
            {
                var tempDate = realm.All <CurrentIncome>().First(d => d.Income_Id == tempId);
                realm.Write(() =>
                {
                    tempDate.IncomeDate                  = System.DateTime.Now.ToString();
                    tempDate.IncomeSources               = income;
                    tempDate.IncomeSum                   = Convert.ToDouble(Sum);
                    tempDate.IncomeSources.SourceName    = (string)EnteringSourcePicker;
                    tempDate.IncomeSources.SourceComment = EnteringComent;
                });
            }
            EnteringFundsVeiw.calculateSum = 0;
        }
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(CurrentIncomeCollection currentincomecollection, System.Data.SqlClient.SqlDataReader data)
        {
            // Do nothing if we have nothing
            if (data == null)
            {
                return;
            }


            // Create a local variable for the new instance.
            CurrentIncome newobj = null;

            // Iterate through the data reader
            while (data.Read())
            {
                // Create a new object instance
                newobj = System.Activator.CreateInstance(currentincomecollection.ContainsType[0]) as CurrentIncome;
                // Let the instance set its own members
                newobj.SetMembers(ref data);
                // Add the new object to the collection instance
                currentincomecollection.Add(newobj);
            }
        }
        /// <summary>
        /// Persists the object.
        /// </summary>
        public virtual void Persist(CurrentIncome persistObject, SqlTransaction sqlTrans)
        {
            // create local variable array for the sql parameters
            SqlParameterHash sqlparams = null;
            // Create a local variable for the connection
            SqlConnection cnn = null;


            // Use the parameter overload or create a new instance
            if (sqlTrans == null)
            {
                cnn = new SqlConnection(CurrentIncome.GetConnectionString());
            }


            try
            {
                // discover the parameters
                if (persistObject.Persisted)
                {
                    sqlparams = SqlHelperParameterCache.GetSpParameterSet(CurrentIncome.GetConnectionString(), "gsp_UpdateCurrentIncome");
                }
                else
                {
                    sqlparams = SqlHelperParameterCache.GetSpParameterSet(CurrentIncome.GetConnectionString(), "gsp_CreateCurrentIncome");
                }


                // Store the parameter for the BorrowerId attribute.
                sqlparams["@borrowerId"].Value = persistObject.BorrowerId;
                // Store the parameter for the IncomeType attribute.
                sqlparams["@incomeType"].Value = persistObject.IncomeType;
                // Store the parameter for the MonthlyTotalAmount attribute.
                sqlparams["@monthlyTotalAmount"].Value = persistObject.MonthlyTotalAmount;
                // Store the parameter for the Id attribute.
                if (!persistObject.Persisted)
                {
                    // store the create only (historical fixed) values
                }
                else
                {
                    // store the update only (historical changeable) values
                    // Store the parameter for the Id attribute.
                    sqlparams["@id"].Value = persistObject.Id;
                }


                if (sqlTrans == null)
                {
                    // Process using the isolated connection
                    using (cnn)
                    {
                        // open the connection
                        cnn.Open();


                        if (!persistObject.Persisted)
                        {
                            persistObject._id = Convert.ToInt64(SqlHelper.ExecuteScalar(cnn, CommandType.StoredProcedure, "gsp_CreateCurrentIncome", sqlparams));
                        }
                        else
                        {
                            SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_UpdateCurrentIncome", sqlparams);
                        }


                        // close the connection after usage
                        cnn.Close();
                    }


                    // nullify the connection var
                    cnn = null;
                }
                else
                {
                    // Process using the shared transaction
                    if (!persistObject.Persisted)
                    {
                        persistObject._id = Convert.ToInt64(SqlHelper.ExecuteScalar(sqlTrans, CommandType.StoredProcedure, "gsp_CreateCurrentIncome", sqlparams));
                    }
                    else
                    {
                        SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_UpdateCurrentIncome", sqlparams);
                    }
                }
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
 /// <summary>
 /// Persists the object.
 /// </summary>
 public virtual void Persist(CurrentIncome persistObject)
 {
     // Make a call to the overloaded method with a null transaction
     Persist(persistObject, null);
 }