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


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


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


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


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


                // nullify the connection
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
コード例 #3
0
 public Employee(string employeeID,
     string firstName,
     string middleName,
     string lastName,
     string jobTitle,
     GenderType gender,
     MaritalStatusType maritalStatus,
     DateTime birthDate,
     DateTime hireDate,
     string homePone,
     string workPhone,
     decimal salary,
     Department department)
     : base()
 {
     this.EmployeeID = employeeID;
     this.FirstName = firstName;
     this.LastName = lastName;
     this.Gender = gender;
     this.MaritalStatus = maritalStatus;
     this.JobTitle = jobTitle;
     this.BirthDate = birthDate;
     this.HireDate = hireDate;
     this.HomePhone = homePone;
     this.WorkPhone = workPhone;
     this.Salary = salary;
     this.Department = department;
 }
コード例 #4
0
 public Employee(string employeeID,
                 string firstName,
                 string middleName,
                 string lastName,
                 string jobTitle,
                 GenderType gender,
                 MaritalStatusType maritalStatus,
                 DateTime birthDate,
                 DateTime hireDate,
                 string homePone,
                 string workPhone,
                 decimal salary,
                 Department department)
     : base()
 {
     this.EmployeeID    = employeeID;
     this.FirstName     = firstName;
     this.LastName      = lastName;
     this.Gender        = gender;
     this.MaritalStatus = maritalStatus;
     this.JobTitle      = jobTitle;
     this.BirthDate     = birthDate;
     this.HireDate      = hireDate;
     this.HomePhone     = homePone;
     this.WorkPhone     = workPhone;
     this.Salary        = salary;
     this.Department    = department;
 }
コード例 #5
0
        /// <summary>
        /// Deletes the object.
        /// </summary>
        public virtual void Delete(MaritalStatusType deleteObject)
        {
            // create a new instance of the connection
            SqlConnection cnn = new SqlConnection(MaritalStatusType.GetConnectionString());
            // create local variable array for the sql parameters
            SqlParameterHash sqlparams = null;


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


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


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


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


            // nullify the reference
            deleteObject = null;
        }
コード例 #6
0
        private void SeedMaritalStatusTypes(DataContext context)
        {
            List <string> items = new List <string>()
            {
                "Married", "Unmarried"
            };

            foreach (string item in items)
            {
                var entity = context.MaritalStatusTypes.Where(p => p.Name == item && p.Deleted == false).SingleOrDefault();

                if (entity == null)
                {
                    entity      = new MaritalStatusType();
                    entity.Name = item;
                    context.MaritalStatusTypes.Add(entity);
                }
            }
        }
コード例 #7
0
        /// <summary>
        /// Fills a single instance with data based on its primary key values.
        /// </summary>
        public virtual void Fill(MaritalStatusType mst, System.Int16 id)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(MaritalStatusType.GetConnectionString());

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


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


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


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


                // nullify the connection var
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
コード例 #8
0
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(MaritalStatusTypes maritalstatustypes, System.Data.SqlClient.SqlDataReader data)
        {
            // Do nothing if we have nothing
            if (data == null)
            {
                return;
            }


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

            // Iterate through the data reader
            while (data.Read())
            {
                // Create a new object instance
                newobj = System.Activator.CreateInstance(maritalstatustypes.ContainsType[0]) as MaritalStatusType;
                // Let the instance set its own members
                newobj.SetMembers(ref data);
                // Add the new object to the collection instance
                maritalstatustypes.Add(newobj);
            }
        }
コード例 #9
0
 public static int MaritalStatusToIndex(MaritalStatusType ms)
 => mMaritalStatusMap.IndexOf(ms);
コード例 #10
0
        /// <summary>
        /// Persists the object.
        /// </summary>
        public virtual void Persist(MaritalStatusType 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(MaritalStatusType.GetConnectionString());
            }


            try
            {
                // discover the parameters
                if (persistObject.Persisted)
                {
                    sqlparams = SqlHelperParameterCache.GetSpParameterSet(MaritalStatusType.GetConnectionString(), "gsp_UpdateMaritalStatusType");
                }
                else
                {
                    sqlparams = SqlHelperParameterCache.GetSpParameterSet(MaritalStatusType.GetConnectionString(), "gsp_CreateMaritalStatusType");
                }


                // Store the parameter for the Name attribute.
                if (!persistObject.NameIsNull)
                {
                    sqlparams["@name"].Value = persistObject.Name;
                }
                // Store the parameter for the EnumeratedName attribute.
                if (!persistObject.EnumeratedNameIsNull)
                {
                    sqlparams["@enumeratedName"].Value = persistObject.EnumeratedName;
                }
                // Store the parameter for the Description attribute.
                if (!persistObject.DescriptionIsNull)
                {
                    sqlparams["@description"].Value = persistObject.Description;
                }
                // Store the parameter for the Id attribute.
                sqlparams["@id"].Value = persistObject.Id;
                if (!persistObject.Persisted)
                {
                    // store the create only (historical fixed) values
                }
                else
                {
                    // store the update only (historical changeable) values
                }


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


                        if (!persistObject.Persisted)
                        {
                            SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_CreateMaritalStatusType", sqlparams);
                        }
                        else
                        {
                            SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_UpdateMaritalStatusType", sqlparams);
                        }


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


                    // nullify the connection var
                    cnn = null;
                }
                else
                {
                    // Process using the shared transaction
                    if (!persistObject.Persisted)
                    {
                        SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_CreateMaritalStatusType", sqlparams);
                    }
                    else
                    {
                        SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_UpdateMaritalStatusType", sqlparams);
                    }
                }
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
コード例 #11
0
 /// <summary>
 /// Persists the object.
 /// </summary>
 public virtual void Persist(MaritalStatusType persistObject)
 {
     // Make a call to the overloaded method with a null transaction
     Persist(persistObject, null);
 }
コード例 #12
0
ファイル: ElasticModels.cs プロジェクト: ykcycvl/fusion
            public List<MaritalStatusType> ToList()
            {
                List<MaritalStatusType> maritalStatusTypes = new List<MaritalStatusType>();

                for (int i = 0; i < _DisplayName.Length; i++)
                {
                    MaritalStatusType maritalStatusType = new MaritalStatusType();
                    maritalStatusType.DisplayName = _DisplayName[i];
                    maritalStatusType.name = _Name[i];
                    maritalStatusTypes.Add(maritalStatusType);
                }

                return maritalStatusTypes;
            }