Exemple #1
0
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(Explanations explanations, 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.
            Explanation 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(explanations.ContainsType[0]) as Explanation;
                // Let the instance set its own members
                newobj.SetMembers(ref dr);
                // Add the new object to the collection instance
                explanations.Add(newobj);
            }
        }
Exemple #2
0
        /// <summary>
        /// Fill method for populating an entire collection of Explanations
        /// </summary>
        public virtual void Fill(Explanations explanations)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(Explanation.GetConnectionString());


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


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


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


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


                // nullify the connection
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
Exemple #3
0
        /// <summary>
        /// Gets the objects for the EXPLANATION relationship.
        /// </summary>
        public Explanations GetExplanations()
        {
            Explanations explanations = new Explanations();


            ExplanationBase.ServiceObject.FillByDeclaration(explanations, _borrowerid);
            return(explanations);
        }
        /// <summary>
        /// Gets the objects for the EXPLANATION relationship.
        /// </summary>
        public Explanations GetExplanations()
        {
            Explanations explanations = new Explanations();


            ExplanationBase.ServiceObject.FillByExplanationType(explanations, _id);
            return(explanations);
        }
        public void IncludeExplanations(ExplanationOptions options, out Explanations explanations)
        {
            if (ExplanationToken != null)
            {
                throw new InvalidOperationException($"Duplicate '{nameof(IncludeExplanations)}' method calls are forbidden.");
            }

            var optionsParameterName = options != null?AddQueryParameter(options) : null;

            ExplanationToken = ExplanationToken.Create(optionsParameterName);
            Explanations     = explanations = new Explanations();
        }
Exemple #6
0
        /// <summary>
        /// Gets all the available objects.
        /// </summary>
        public virtual Explanations GetAll()
        {
            // create a new instance of the return object
            Explanations objects = new Explanations();


            // fill the objects
            this.Fill(objects);


            // return the filled object from the service
            return(objects);
        }
Exemple #7
0
        public override void AddExplanation(ExplanationResult explanation)
        {
            if (Explanations == null)
            {
                Explanations = new Dictionary <string, string[]>();
            }

            if (Explanations.TryGetValue(explanation.Key, out var result) == false)
            {
                Explanations[explanation.Key] = new[] { CreateExplanation(explanation.Explanation) }
            }
            ;
            else
            {
                Array.Resize(ref result, result.Length + 1);
                result[result.Length - 1] = CreateExplanation(explanation.Explanation);
            }
        }
Exemple #8
0
        /// <summary>
        /// Fill method for populating a collection by ExplanationType
        /// </summary>
        public void FillByExplanationType(Explanations explanations, System.Int16 id)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(Explanation.GetConnectionString());


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


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


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


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


                // nullify the connection
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
Exemple #9
0
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(Explanations explanations, System.Data.SqlClient.SqlDataReader data)
        {
            // Do nothing if we have nothing
            if (data == null)
            {
                return;
            }


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

            // Iterate through the data reader
            while (data.Read())
            {
                // Create a new object instance
                newobj = System.Activator.CreateInstance(explanations.ContainsType[0]) as Explanation;
                // Let the instance set its own members
                newobj.SetMembers(ref data);
                // Add the new object to the collection instance
                explanations.Add(newobj);
            }
        }
Exemple #10
0
 /// <inheritdoc />
 IDocumentQuery <T> IDocumentQueryBase <T, IDocumentQuery <T> > .IncludeExplanations(ExplanationOptions options, out Explanations explanations)
 {
     IncludeExplanations(options, out explanations);
     return(this);
 }
 public virtual int Update(Explanations dataSet)
 {
     return(this.Adapter.Update(dataSet, "Explanations"));
 }