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

            obj.Fetch(data);
            // check all object rules and property rules
            obj.BusinessRules.CheckRules();
            return(obj);
        }
        /// <summary>
        /// Loads a <see cref="F03_Continent_ReChild"/> object from the given <see cref="F03_Continent_ReChildDto"/>.
        /// </summary>
        /// <param name="data">The F03_Continent_ReChildDto to use.</param>
        private void Fetch(F03_Continent_ReChildDto data)
        {
            // Value properties
            LoadProperty(Continent_Child_NameProperty, data.Continent_Child_Name);
            // parent properties
            continent_ID2 = data.Parent_Continent_ID;
            var args = new DataPortalHookArgs(data);

            OnFetchRead(args);
        }
Пример #3
0
        private F03_Continent_ReChildDto FetchF03_Continent_ReChild(SafeDataReader dr)
        {
            var f03_Continent_ReChild = new F03_Continent_ReChildDto();

            // Value properties
            f03_Continent_ReChild.Continent_Child_Name = dr.GetString("Continent_Child_Name");
            // parent properties
            f03_Continent_ReChild.Parent_Continent_ID = dr.GetInt32("Continent_ID2");

            return(f03_Continent_ReChild);
        }
        /// <summary>
        /// Factory method. Loads a <see cref="F03_Continent_ReChild"/> object from the given F03_Continent_ReChildDto.
        /// </summary>
        /// <param name="data">The <see cref="F03_Continent_ReChildDto"/>.</param>
        /// <returns>A reference to the fetched <see cref="F03_Continent_ReChild"/> object.</returns>
        internal static F03_Continent_ReChild GetF03_Continent_ReChild(F03_Continent_ReChildDto data)
        {
            F03_Continent_ReChild obj = new F03_Continent_ReChild();

            // show the framework that this is a child object
            obj.MarkAsChild();
            obj.Fetch(data);
            obj.MarkOld();
            // check all object rules and property rules
            obj.BusinessRules.CheckRules();
            return(obj);
        }
 /// <summary>
 /// Inserts a new F03_Continent_ReChild object in the database.
 /// </summary>
 /// <param name="f03_Continent_ReChild">The F03 Continent Re Child DTO.</param>
 /// <returns>The new <see cref="F03_Continent_ReChildDto"/>.</returns>
 public F03_Continent_ReChildDto Insert(F03_Continent_ReChildDto f03_Continent_ReChild)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("AddF03_Continent_ReChild", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Continent_ID2", f03_Continent_ReChild.Parent_Continent_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Continent_Child_Name", f03_Continent_ReChild.Continent_Child_Name).DbType = DbType.String;
             cmd.ExecuteNonQuery();
         }
     }
     return(f03_Continent_ReChild);
 }
 /// <summary>
 /// Updates in the database all changes made to the F03_Continent_ReChild object.
 /// </summary>
 /// <param name="f03_Continent_ReChild">The F03 Continent Re Child DTO.</param>
 /// <returns>The updated <see cref="F03_Continent_ReChildDto"/>.</returns>
 public F03_Continent_ReChildDto Update(F03_Continent_ReChildDto f03_Continent_ReChild)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("UpdateF03_Continent_ReChild", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Continent_ID2", f03_Continent_ReChild.Parent_Continent_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Continent_Child_Name", f03_Continent_ReChild.Continent_Child_Name).DbType = DbType.String;
             var rowsAffected = cmd.ExecuteNonQuery();
             if (rowsAffected == 0)
             {
                 throw new DataNotFoundException("F03_Continent_ReChild");
             }
         }
     }
     return(f03_Continent_ReChild);
 }
        private void Child_Insert(F02_Continent parent)
        {
            var dto = new F03_Continent_ReChildDto();

            dto.Parent_Continent_ID  = parent.Continent_ID;
            dto.Continent_Child_Name = Continent_Child_Name;
            using (var dalManager = DalFactoryParentLoadSoftDelete.GetManager())
            {
                var args = new DataPortalHookArgs(dto);
                OnInsertPre(args);
                var dal = dalManager.GetProvider <IF03_Continent_ReChildDal>();
                using (BypassPropertyChecks)
                {
                    var resultDto = dal.Insert(dto);
                    args = new DataPortalHookArgs(resultDto);
                }
                OnInsertPost(args);
            }
        }