Exemple #1
0
        /// <summary>
        /// Factory method. Loads a <see cref="B09_Region_ReChild"/> object from the given B09_Region_ReChildDto.
        /// </summary>
        /// <param name="data">The <see cref="B09_Region_ReChildDto"/>.</param>
        /// <returns>A reference to the fetched <see cref="B09_Region_ReChild"/> object.</returns>
        internal static B09_Region_ReChild GetB09_Region_ReChild(B09_Region_ReChildDto data)
        {
            B09_Region_ReChild obj = new B09_Region_ReChild();

            obj.Fetch(data);
            // check all object rules and property rules
            obj.BusinessRules.CheckRules();
            return(obj);
        }
Exemple #2
0
        /// <summary>
        /// Loads a <see cref="B09_Region_ReChild"/> object from the given <see cref="B09_Region_ReChildDto"/>.
        /// </summary>
        /// <param name="data">The B09_Region_ReChildDto to use.</param>
        private void Fetch(B09_Region_ReChildDto data)
        {
            // Value properties
            LoadProperty(Region_Child_NameProperty, data.Region_Child_Name);
            // parent properties
            region_ID2 = data.Parent_Region_ID;
            var args = new DataPortalHookArgs(data);

            OnFetchRead(args);
        }
Exemple #3
0
        private B09_Region_ReChildDto FetchB09_Region_ReChild(SafeDataReader dr)
        {
            var b09_Region_ReChild = new B09_Region_ReChildDto();

            // Value properties
            b09_Region_ReChild.Region_Child_Name = dr.GetString("Region_Child_Name");
            // parent properties
            b09_Region_ReChild.Parent_Region_ID = dr.GetInt32("Region_ID2");

            return(b09_Region_ReChild);
        }
Exemple #4
0
        /// <summary>
        /// Factory method. Loads a <see cref="B09_Region_ReChild"/> object from the given B09_Region_ReChildDto.
        /// </summary>
        /// <param name="data">The <see cref="B09_Region_ReChildDto"/>.</param>
        /// <returns>A reference to the fetched <see cref="B09_Region_ReChild"/> object.</returns>
        internal static B09_Region_ReChild GetB09_Region_ReChild(B09_Region_ReChildDto data)
        {
            B09_Region_ReChild obj = new B09_Region_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 B09_Region_ReChild object in the database.
 /// </summary>
 /// <param name="b09_Region_ReChild">The B09 Region Re Child DTO.</param>
 /// <returns>The new <see cref="B09_Region_ReChildDto"/>.</returns>
 public B09_Region_ReChildDto Insert(B09_Region_ReChildDto b09_Region_ReChild)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("AddB09_Region_ReChild", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Region_ID2", b09_Region_ReChild.Parent_Region_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Region_Child_Name", b09_Region_ReChild.Region_Child_Name).DbType = DbType.String;
             cmd.ExecuteNonQuery();
         }
     }
     return(b09_Region_ReChild);
 }
 /// <summary>
 /// Updates in the database all changes made to the B09_Region_ReChild object.
 /// </summary>
 /// <param name="b09_Region_ReChild">The B09 Region Re Child DTO.</param>
 /// <returns>The updated <see cref="B09_Region_ReChildDto"/>.</returns>
 public B09_Region_ReChildDto Update(B09_Region_ReChildDto b09_Region_ReChild)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("UpdateB09_Region_ReChild", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Region_ID2", b09_Region_ReChild.Parent_Region_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Region_Child_Name", b09_Region_ReChild.Region_Child_Name).DbType = DbType.String;
             var rowsAffected = cmd.ExecuteNonQuery();
             if (rowsAffected == 0)
             {
                 throw new DataNotFoundException("B09_Region_ReChild");
             }
         }
     }
     return(b09_Region_ReChild);
 }
Exemple #7
0
        private void Child_Insert(B08_Region parent)
        {
            var dto = new B09_Region_ReChildDto();

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