private void Child_Update()
        {
            if (!IsDirty)
            {
                return;
            }

            var dto = new B04_SubContinentDto();

            dto.SubContinent_ID   = SubContinent_ID;
            dto.SubContinent_Name = SubContinent_Name;
            using (var dalManager = DalFactoryParentLoad.GetManager())
            {
                var args = new DataPortalHookArgs(dto);
                OnUpdatePre(args);
                var dal = dalManager.GetProvider <IB04_SubContinentDal>();
                using (BypassPropertyChecks)
                {
                    var resultDto = dal.Update(dto);
                    args = new DataPortalHookArgs(resultDto);
                }
                OnUpdatePost(args);
                // flushes all pending data operations
                FieldManager.UpdateChildren(this);
            }
        }
Exemple #2
0
        /// <summary>
        /// Factory method. Loads a <see cref="B04_SubContinent"/> object from the given B04_SubContinentDto.
        /// </summary>
        /// <param name="data">The <see cref="B04_SubContinentDto"/>.</param>
        /// <returns>A reference to the fetched <see cref="B04_SubContinent"/> object.</returns>
        internal static B04_SubContinent GetB04_SubContinent(B04_SubContinentDto data)
        {
            B04_SubContinent obj = new B04_SubContinent();

            obj.Fetch(data);
            obj.LoadProperty(B05_CountryObjectsProperty, new B05_CountryColl());
            return(obj);
        }
Exemple #3
0
        /// <summary>
        /// Loads a <see cref="B04_SubContinent"/> object from the given <see cref="B04_SubContinentDto"/>.
        /// </summary>
        /// <param name="data">The B04_SubContinentDto to use.</param>
        private void Fetch(B04_SubContinentDto data)
        {
            // Value properties
            LoadProperty(SubContinent_IDProperty, data.SubContinent_ID);
            LoadProperty(SubContinent_NameProperty, data.SubContinent_Name);
            // parent properties
            parent_Continent_ID = data.Parent_Continent_ID;
            var args = new DataPortalHookArgs(data);

            OnFetchRead(args);
        }
        /// <summary>
        /// Factory method. Loads a <see cref="B04_SubContinent"/> object from the given B04_SubContinentDto.
        /// </summary>
        /// <param name="data">The <see cref="B04_SubContinentDto"/>.</param>
        /// <returns>A reference to the fetched <see cref="B04_SubContinent"/> object.</returns>
        internal static B04_SubContinent GetB04_SubContinent(B04_SubContinentDto data)
        {
            B04_SubContinent obj = new B04_SubContinent();

            // show the framework that this is a child object
            obj.MarkAsChild();
            obj.Fetch(data);
            obj.LoadProperty(B05_CountryObjectsProperty, B05_CountryColl.NewB05_CountryColl());
            obj.MarkOld();
            return(obj);
        }
Exemple #5
0
        private B04_SubContinentDto FetchB04_SubContinent(SafeDataReader dr)
        {
            var b04_SubContinent = new B04_SubContinentDto();

            // Value properties
            b04_SubContinent.SubContinent_ID   = dr.GetInt32("SubContinent_ID");
            b04_SubContinent.SubContinent_Name = dr.GetString("SubContinent_Name");
            // parent properties
            b04_SubContinent.Parent_Continent_ID = dr.GetInt32("Parent_Continent_ID");

            return(b04_SubContinent);
        }
Exemple #6
0
 /// <summary>
 /// Inserts a new B04_SubContinent object in the database.
 /// </summary>
 /// <param name="b04_SubContinent">The B04 Sub Continent DTO.</param>
 /// <returns>The new <see cref="B04_SubContinentDto"/>.</returns>
 public B04_SubContinentDto Insert(B04_SubContinentDto b04_SubContinent)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("AddB04_SubContinent", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Parent_Continent_ID", b04_SubContinent.Parent_Continent_ID).DbType = DbType.Int32;
             cmd.Parameters.AddWithValue("@SubContinent_ID", b04_SubContinent.SubContinent_ID).Direction      = ParameterDirection.Output;
             cmd.Parameters.AddWithValue("@SubContinent_Name", b04_SubContinent.SubContinent_Name).DbType     = DbType.String;
             cmd.ExecuteNonQuery();
             b04_SubContinent.SubContinent_ID = (int)cmd.Parameters["@SubContinent_ID"].Value;
         }
     }
     return(b04_SubContinent);
 }
Exemple #7
0
 /// <summary>
 /// Updates in the database all changes made to the B04_SubContinent object.
 /// </summary>
 /// <param name="b04_SubContinent">The B04 Sub Continent DTO.</param>
 /// <returns>The updated <see cref="B04_SubContinentDto"/>.</returns>
 public B04_SubContinentDto Update(B04_SubContinentDto b04_SubContinent)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("UpdateB04_SubContinent", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@SubContinent_ID", b04_SubContinent.SubContinent_ID).DbType     = DbType.Int32;
             cmd.Parameters.AddWithValue("@SubContinent_Name", b04_SubContinent.SubContinent_Name).DbType = DbType.String;
             var rowsAffected = cmd.ExecuteNonQuery();
             if (rowsAffected == 0)
             {
                 throw new DataNotFoundException("B04_SubContinent");
             }
         }
     }
     return(b04_SubContinent);
 }
        private void Child_Insert(B02_Continent parent)
        {
            var dto = new B04_SubContinentDto();

            dto.Parent_Continent_ID = parent.Continent_ID;
            dto.SubContinent_Name   = SubContinent_Name;
            using (var dalManager = DalFactoryParentLoad.GetManager())
            {
                var args = new DataPortalHookArgs(dto);
                OnInsertPre(args);
                var dal = dalManager.GetProvider <IB04_SubContinentDal>();
                using (BypassPropertyChecks)
                {
                    var resultDto = dal.Insert(dto);
                    LoadProperty(SubContinent_IDProperty, resultDto.SubContinent_ID);
                    args = new DataPortalHookArgs(resultDto);
                }
                OnInsertPost(args);
                // flushes all pending data operations
                FieldManager.UpdateChildren(this);
            }
        }