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

            obj.Fetch(data);
            return(obj);
        }
        /// <summary>
        /// Loads a <see cref="B07_Country_Child"/> object from the given <see cref="B07_Country_ChildDto"/>.
        /// </summary>
        /// <param name="data">The B07_Country_ChildDto to use.</param>
        private void Fetch(B07_Country_ChildDto data)
        {
            // Value properties
            LoadProperty(Country_Child_NameProperty, data.Country_Child_Name);
            // parent properties
            country_ID1 = data.Parent_Country_ID;
            var args = new DataPortalHookArgs(data);

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

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

            // Value properties
            b07_Country_Child.Country_Child_Name = dr.GetString("Country_Child_Name");
            // parent properties
            b07_Country_Child.Parent_Country_ID = dr.GetInt32("Country_ID1");

            return(b07_Country_Child);
        }
Example #5
0
 /// <summary>
 /// Inserts a new B07_Country_Child object in the database.
 /// </summary>
 /// <param name="b07_Country_Child">The B07 Country Child DTO.</param>
 /// <returns>The new <see cref="B07_Country_ChildDto"/>.</returns>
 public B07_Country_ChildDto Insert(B07_Country_ChildDto b07_Country_Child)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("AddB07_Country_Child", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Country_ID1", b07_Country_Child.Parent_Country_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Country_Child_Name", b07_Country_Child.Country_Child_Name).DbType = DbType.String;
             cmd.ExecuteNonQuery();
         }
     }
     return(b07_Country_Child);
 }
Example #6
0
 /// <summary>
 /// Updates in the database all changes made to the B07_Country_Child object.
 /// </summary>
 /// <param name="b07_Country_Child">The B07 Country Child DTO.</param>
 /// <returns>The updated <see cref="B07_Country_ChildDto"/>.</returns>
 public B07_Country_ChildDto Update(B07_Country_ChildDto b07_Country_Child)
 {
     using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad"))
     {
         using (var cmd = new SqlCommand("UpdateB07_Country_Child", ctx.Connection))
         {
             cmd.CommandType = CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@Country_ID1", b07_Country_Child.Parent_Country_ID).DbType         = DbType.Int32;
             cmd.Parameters.AddWithValue("@Country_Child_Name", b07_Country_Child.Country_Child_Name).DbType = DbType.String;
             var rowsAffected = cmd.ExecuteNonQuery();
             if (rowsAffected == 0)
             {
                 throw new DataNotFoundException("B07_Country_Child");
             }
         }
     }
     return(b07_Country_Child);
 }
        private void Child_Insert(B06_Country parent)
        {
            var dto = new B07_Country_ChildDto();

            dto.Parent_Country_ID  = parent.Country_ID;
            dto.Country_Child_Name = Country_Child_Name;
            using (var dalManager = DalFactoryParentLoad.GetManager())
            {
                var args = new DataPortalHookArgs(dto);
                OnInsertPre(args);
                var dal = dalManager.GetProvider <IB07_Country_ChildDal>();
                using (BypassPropertyChecks)
                {
                    var resultDto = dal.Insert(dto);
                    args = new DataPortalHookArgs(resultDto);
                }
                OnInsertPost(args);
            }
        }