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

            obj.Fetch(data);
            return(obj);
        }
        /// <summary>
        /// Loads a <see cref="A03_Continent_Child"/> object from the given <see cref="A03_Continent_ChildDto"/>.
        /// </summary>
        /// <param name="data">The A03_Continent_ChildDto to use.</param>
        private void Fetch(A03_Continent_ChildDto data)
        {
            // Value properties
            LoadProperty(Continent_Child_NameProperty, data.Continent_Child_Name);
            var args = new DataPortalHookArgs(data);

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

            // show the framework that this is a child object
            obj.MarkAsChild();
            obj.Fetch(data);
            obj.MarkOld();
            return(obj);
        }
示例#4
0
 /// <summary>
 /// Inserts a new A03_Continent_Child object in the database.
 /// </summary>
 /// <param name="a03_Continent_Child">The A03 Continent Child DTO.</param>
 /// <returns>The new <see cref="A03_Continent_ChildDto"/>.</returns>
 public A03_Continent_ChildDto Insert(A03_Continent_ChildDto a03_Continent_Child)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("AddA03_Continent_Child", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Continent_ID1", a03_Continent_Child.Parent_Continent_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Continent_Child_Name", a03_Continent_Child.Continent_Child_Name).DbType = DbType.String;
             cmd.ExecuteNonQuery();
         }
     }
     return(a03_Continent_Child);
 }
示例#5
0
 /// <summary>
 /// Updates in the database all changes made to the A03_Continent_Child object.
 /// </summary>
 /// <param name="a03_Continent_Child">The A03 Continent Child DTO.</param>
 /// <returns>The updated <see cref="A03_Continent_ChildDto"/>.</returns>
 public A03_Continent_ChildDto Update(A03_Continent_ChildDto a03_Continent_Child)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("UpdateA03_Continent_Child", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Continent_ID1", a03_Continent_Child.Parent_Continent_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Continent_Child_Name", a03_Continent_Child.Continent_Child_Name).DbType = DbType.String;
             var rowsAffected = cmd.ExecuteNonQuery();
             if (rowsAffected == 0)
             {
                 throw new DataNotFoundException("A03_Continent_Child");
             }
         }
     }
     return(a03_Continent_Child);
 }
        private void Child_Insert(A02_Continent parent)
        {
            var dto = new A03_Continent_ChildDto();

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