Beispiel #1
0
        /// <summary>
        /// Fill method for populating an entire collection of DownPayments
        /// </summary>
        public virtual void Fill(DownPayments downPayments)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(DownPayment.GetConnectionString());


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


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


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


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


                // nullify the connection
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
Beispiel #2
0
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(DownPayments downpayments, 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.
            DownPayment 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(downpayments.ContainsType[0]) as DownPayment;
                // Let the instance set its own members
                newobj.SetMembers(ref dr);
                // Add the new object to the collection instance
                downpayments.Add(newobj);
            }
        }
Beispiel #3
0
        public ActionResult Create([Bind(Include = "Payment, Request")] DownPayment downPayment)
        {
            Db db = new Db(DbServices.ConnectionString);

            if (ModelState.IsValid)
            {
                try
                {
                    DownPaymentServices.Insert(CurrentUser.Id, downPayment, db);
                    TempData["Success"] = ResourceServices.GetString(Cf.Data.Resources.ResourceBase.Culture, "UI", "InsertConfirmed");
                    return(RedirectToAction("Index"));
                }
                catch (CfException cfex)
                {
                    TempData["Failure"] = cfex.ErrorDefinition.LocalizedMessage;
                }
                catch (Exception ex)
                {
                    TempData["Failure"] = ex.Message;
                }
            }

            ViewBag.PaymentList = new SelectList(PaymentServices.List(db), "Id", "Notes");
            ViewBag.RequestList = new SelectList(RequestServices.List(db), "Product", "Attachment");
            return(View(downPayment));
        }
Beispiel #4
0
        // GET: DownPayment/Delete/5
        public ActionResult Delete(Nullable <int> id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }

            Db          db          = new Db(DbServices.ConnectionString);
            DownPayment downPayment = DownPaymentServices.Get(id.Value, db);

            if (downPayment == null)
            {
                return(HttpNotFound());
            }
            return(View(downPayment));
        }
Beispiel #5
0
        /// <summary>
        /// Deletes the object.
        /// </summary>
        public virtual void Delete(DownPayment deleteObject)
        {
            // create a new instance of the connection
            SqlConnection cnn = new SqlConnection(DownPayment.GetConnectionString());
            // create local variable array for the sql parameters
            SqlParameterHash sqlparams = null;


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


                // 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_DeleteDownPayment", sqlparams);


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


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


            // nullify the reference
            deleteObject = null;
        }
Beispiel #6
0
        /// <summary>
        /// Fill method for populating a collection by DownPaymentType
        /// </summary>
        public void FillByDownPaymentType(DownPayments downPayments, System.Int16 id)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(DownPayment.GetConnectionString());


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


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


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


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


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


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


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

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


                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_SelectDownPayment", sqlparams);


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


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


                // nullify the connection var
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
Beispiel #8
0
        // GET: DownPayment/Edit/5
        public ActionResult Edit(Nullable <int> payment)
        {
            Db db = new Db(DbServices.ConnectionString);

            if (payment == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            DownPayment downPayment = DownPaymentServices.Get(payment.Value, db);

            if (downPayment == null)
            {
                return(HttpNotFound());
            }

            ViewBag.PaymentList = new SelectList(PaymentServices.List(db), "Id", "Notes", downPayment.Payment);
            ViewBag.RequestList = new SelectList(RequestServices.List(db), "Product", "Attachment", downPayment.Request);
            return(View(downPayment));
        }
Beispiel #9
0
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(DownPayments downpayments, System.Data.SqlClient.SqlDataReader data)
        {
            // Do nothing if we have nothing
            if (data == null)
            {
                return;
            }


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

            // Iterate through the data reader
            while (data.Read())
            {
                // Create a new object instance
                newobj = System.Activator.CreateInstance(downpayments.ContainsType[0]) as DownPayment;
                // Let the instance set its own members
                newobj.SetMembers(ref data);
                // Add the new object to the collection instance
                downpayments.Add(newobj);
            }
        }
Beispiel #10
0
        /// <summary>
        /// Persists the object.
        /// </summary>
        public virtual void Persist(DownPayment 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(DownPayment.GetConnectionString());
            }


            try
            {
                // discover the parameters
                if (persistObject.Persisted)
                {
                    sqlparams = SqlHelperParameterCache.GetSpParameterSet(DownPayment.GetConnectionString(), "gsp_UpdateDownPayment");
                }
                else
                {
                    sqlparams = SqlHelperParameterCache.GetSpParameterSet(DownPayment.GetConnectionString(), "gsp_CreateDownPayment");
                }


                // Store the parameter for the LoanApplicationId attribute.
                sqlparams["@loanApplicationId"].Value = persistObject.LoanApplicationId;
                // Store the parameter for the Amount attribute.
                sqlparams["@amount"].Value = persistObject.Amount;
                // Store the parameter for the SourceDescription attribute.
                if (!persistObject.SourceDescriptionIsNull)
                {
                    sqlparams["@sourceDescription"].Value = persistObject.SourceDescription;
                }
                // Store the parameter for the Type attribute.
                if (!persistObject.TypeIsNull)
                {
                    sqlparams["@type"].Value = persistObject.Type;
                }
                // 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_CreateDownPayment", sqlparams));
                        }
                        else
                        {
                            SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_UpdateDownPayment", 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_CreateDownPayment", sqlparams));
                    }
                    else
                    {
                        SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_UpdateDownPayment", sqlparams);
                    }
                }
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
Beispiel #11
0
 /// <summary>
 /// Persists the object.
 /// </summary>
 public virtual void Persist(DownPayment persistObject)
 {
     // Make a call to the overloaded method with a null transaction
     Persist(persistObject, null);
 }