/// <summary>
        /// Factory method. Loads a <see cref="F09_Region_Child"/> object from the given F09_Region_ChildDto.
        /// </summary>
        /// <param name="data">The <see cref="F09_Region_ChildDto"/>.</param>
        /// <returns>A reference to the fetched <see cref="F09_Region_Child"/> object.</returns>
        internal static F09_Region_Child GetF09_Region_Child(F09_Region_ChildDto data)
        {
            F09_Region_Child obj = new F09_Region_Child();

            obj.Fetch(data);
            return(obj);
        }
        /// <summary>
        /// Loads a <see cref="F09_Region_Child"/> object from the given <see cref="F09_Region_ChildDto"/>.
        /// </summary>
        /// <param name="data">The F09_Region_ChildDto to use.</param>
        private void Fetch(F09_Region_ChildDto data)
        {
            // Value properties
            LoadProperty(Region_Child_NameProperty, data.Region_Child_Name);
            // parent properties
            region_ID1 = data.Parent_Region_ID;
            var args = new DataPortalHookArgs(data);

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

            // show the framework that this is a child object
            obj.MarkAsChild();
            obj.Fetch(data);
            obj.MarkOld();
            return(obj);
        }
Example #4
0
        private F09_Region_ChildDto FetchF09_Region_Child(SafeDataReader dr)
        {
            var f09_Region_Child = new F09_Region_ChildDto();

            // Value properties
            f09_Region_Child.Region_Child_Name = dr.GetString("Region_Child_Name");
            // parent properties
            f09_Region_Child.Parent_Region_ID = dr.GetInt32("Region_ID1");

            return(f09_Region_Child);
        }
 /// <summary>
 /// Inserts a new F09_Region_Child object in the database.
 /// </summary>
 /// <param name="f09_Region_Child">The F09 Region Child DTO.</param>
 /// <returns>The new <see cref="F09_Region_ChildDto"/>.</returns>
 public F09_Region_ChildDto Insert(F09_Region_ChildDto f09_Region_Child)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("AddF09_Region_Child", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Region_ID1", f09_Region_Child.Parent_Region_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Region_Child_Name", f09_Region_Child.Region_Child_Name).DbType = DbType.String;
             cmd.ExecuteNonQuery();
         }
     }
     return(f09_Region_Child);
 }
 /// <summary>
 /// Updates in the database all changes made to the F09_Region_Child object.
 /// </summary>
 /// <param name="f09_Region_Child">The F09 Region Child DTO.</param>
 /// <returns>The updated <see cref="F09_Region_ChildDto"/>.</returns>
 public F09_Region_ChildDto Update(F09_Region_ChildDto f09_Region_Child)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("UpdateF09_Region_Child", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Region_ID1", f09_Region_Child.Parent_Region_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Region_Child_Name", f09_Region_Child.Region_Child_Name).DbType = DbType.String;
             var rowsAffected = cmd.ExecuteNonQuery();
             if (rowsAffected == 0)
             {
                 throw new DataNotFoundException("F09_Region_Child");
             }
         }
     }
     return(f09_Region_Child);
 }
        private void Child_Insert(F08_Region parent)
        {
            var dto = new F09_Region_ChildDto();

            dto.Parent_Region_ID  = parent.Region_ID;
            dto.Region_Child_Name = Region_Child_Name;
            using (var dalManager = DalFactoryParentLoadSoftDelete.GetManager())
            {
                var args = new DataPortalHookArgs(dto);
                OnInsertPre(args);
                var dal = dalManager.GetProvider <IF09_Region_ChildDal>();
                using (BypassPropertyChecks)
                {
                    var resultDto = dal.Insert(dto);
                    args = new DataPortalHookArgs(resultDto);
                }
                OnInsertPost(args);
            }
        }