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

            obj.Fetch(data);
            return(obj);
        }
Beispiel #2
0
        /// <summary>
        /// Factory method. Loads a <see cref="A09_Region_Child"/> object from the given A09_Region_ChildDto.
        /// </summary>
        /// <param name="data">The <see cref="A09_Region_ChildDto"/>.</param>
        /// <returns>A reference to the fetched <see cref="A09_Region_Child"/> object.</returns>
        internal static A09_Region_Child GetA09_Region_Child(A09_Region_ChildDto data)
        {
            A09_Region_Child obj = new A09_Region_Child();

            // show the framework that this is a child object
            obj.MarkAsChild();
            obj.Fetch(data);
            obj.MarkOld();
            return(obj);
        }
Beispiel #3
0
        /// <summary>
        /// Loads a <see cref="A09_Region_Child"/> object from the given <see cref="A09_Region_ChildDto"/>.
        /// </summary>
        /// <param name="data">The A09_Region_ChildDto to use.</param>
        private void Fetch(A09_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);
        }
Beispiel #4
0
        private A09_Region_ChildDto FetchA09_Region_Child(SafeDataReader dr)
        {
            var a09_Region_Child = new A09_Region_ChildDto();

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

            return(a09_Region_Child);
        }
Beispiel #5
0
 /// <summary>
 /// Inserts a new A09_Region_Child object in the database.
 /// </summary>
 /// <param name="a09_Region_Child">The A09 Region Child DTO.</param>
 /// <returns>The new <see cref="A09_Region_ChildDto"/>.</returns>
 public A09_Region_ChildDto Insert(A09_Region_ChildDto a09_Region_Child)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("AddA09_Region_Child", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Region_ID1", a09_Region_Child.Parent_Region_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Region_Child_Name", a09_Region_Child.Region_Child_Name).DbType = DbType.String;
             cmd.ExecuteNonQuery();
         }
     }
     return(a09_Region_Child);
 }
Beispiel #6
0
 /// <summary>
 /// Updates in the database all changes made to the A09_Region_Child object.
 /// </summary>
 /// <param name="a09_Region_Child">The A09 Region Child DTO.</param>
 /// <returns>The updated <see cref="A09_Region_ChildDto"/>.</returns>
 public A09_Region_ChildDto Update(A09_Region_ChildDto a09_Region_Child)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("UpdateA09_Region_Child", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Region_ID1", a09_Region_Child.Parent_Region_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Region_Child_Name", a09_Region_Child.Region_Child_Name).DbType = DbType.String;
             var rowsAffected = cmd.ExecuteNonQuery();
             if (rowsAffected == 0)
             {
                 throw new DataNotFoundException("A09_Region_Child");
             }
         }
     }
     return(a09_Region_Child);
 }
Beispiel #7
0
        private void Child_Insert(A08_Region parent)
        {
            var dto = new A09_Region_ChildDto();

            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 <IA09_Region_ChildDal>();
                using (BypassPropertyChecks)
                {
                    var resultDto = dal.Insert(dto);
                    args = new DataPortalHookArgs(resultDto);
                }
                OnInsertPost(args);
            }
        }