Beispiel #1
0
        //[Transactional(TransactionalTypes.TransactionScope)]
        protected void DataPortal_Delete(BankAccountCardCriteria criteria)
        {
            bool cancel = false;

            OnDeleting(criteria, ref cancel);
            if (cancel)
            {
                return;
            }

            using (var connection = new SqlConnection(ADOHelper.ConnectionString))
            {
                connection.Open();
                using (var command = new SqlCommand("[dbo].[spCFM_BankAccountCard_Delete]", connection))
                {
                    command.CommandType = CommandType.StoredProcedure;

                    command.Parameters.AddRange(ADOHelper.SqlParameters(criteria.StateBag));

                    //result: The number of rows changed, inserted, or deleted. -1 for select statements; 0 if no rows were affected, or the statement failed.
                    int result = command.ExecuteNonQuery();
                    if (result == 0)
                    {
                        throw new DBConcurrencyException("The entity is out of date on the client. Please update the entity and try again. This could also be thrown if the sql statement failed to execute.");
                    }
                }
            }

            OnDeleted();
        }
Beispiel #2
0
        public static void DeleteBankAccountCard(System.Int32 bankAccountCardID)
        {
            var criteria = new BankAccountCardCriteria {
                BankAccountCardID = bankAccountCardID
            };


            new BankAccountCard().DataPortal_Delete(criteria);
        }
Beispiel #3
0
        /// <summary>
        /// Returns a <see cref="BankAccountCard"/> object of the specified criteria.
        /// </summary>
        /// <param name="bankAccountID">No additional detail available.</param>
        /// <returns>A <see cref="BankAccountCard"/> object of the specified criteria.</returns>
        public static BankAccountCard GetByBankAccountID(System.Int32 bankAccountID)
        {
            var criteria = new BankAccountCardCriteria {
                BankAccountID = bankAccountID
            };


            return(new BankAccountCard().DataPortal_Fetch(criteria));
        }
Beispiel #4
0
        /// <summary>
        /// Returns a <see cref="BankAccountCard"/> object of the specified criteria.
        /// </summary>
        /// <param name="createdBy">No additional detail available.</param>
        /// <returns>A <see cref="BankAccountCard"/> object of the specified criteria.</returns>
        public static BankAccountCard GetByCreatedBy(System.Int32 createdBy)
        {
            var criteria = new BankAccountCardCriteria {
                CreatedBy = createdBy
            };


            return(new BankAccountCard().DataPortal_Fetch(criteria));
        }
Beispiel #5
0
        /// <summary>
        /// CodeSmith generated stub method that is called after the child <see cref="BankAccountCard"/> object with the specified criteria has been deleted.
        /// </summary>
        //partial void OnDeleted();
        //partial void OnChildLoading(Csla.Core.IPropertyInfo childProperty, ref bool cancel);

        #endregion


        #region Exists Command

        /// <summary>
        /// Determines if a record exists in the BankAccountCard table in the database for the specified criteria.
        /// </summary>
        /// <param name="criteria">The criteria parameter is an <see cref="BankAccountCard"/> object.</param>
        /// <returns>A boolean value of true is returned if a record is found.</returns>
        public static BankAccountCard Exists(BankAccountCardCriteria criteria)
        {
            try
            {
                return(new BankAccountCard().DataPortal_Fetch(criteria));
            }
            catch (Exception ex)
            {
            }
            return(null);
        }
Beispiel #6
0
        /// <summary>
        /// Returns a <see cref="BankAccountCard"/> object of the specified criteria.
        /// </summary>
        /// <param name="updatedBy">No additional detail available.</param>
        /// <returns>A <see cref="BankAccountCard"/> object of the specified criteria.</returns>
        public static BankAccountCard GetByUpdatedBy(System.Int32?updatedBy)
        {
            var criteria = new BankAccountCardCriteria {
            };

            if (updatedBy.HasValue)
            {
                criteria.UpdatedBy = updatedBy.Value;
            }

            return(new BankAccountCard().DataPortal_Fetch(criteria));
        }
Beispiel #7
0
        /// <summary>
        /// Returns a <see cref="BankAccountCard"/> object of the specified criteria.
        /// </summary>
        /// <param name="heldByStaffID">No additional detail available.</param>
        /// <returns>A <see cref="BankAccountCard"/> object of the specified criteria.</returns>
        public static BankAccountCard GetByHeldByStaffID(System.Int32?heldByStaffID)
        {
            var criteria = new BankAccountCardCriteria {
            };

            if (heldByStaffID.HasValue)
            {
                criteria.HeldByStaffID = heldByStaffID.Value;
            }

            return(new BankAccountCard().DataPortal_Fetch(criteria));
        }
        private BankAccountCardList DataPortal_Fetch(BankAccountCardCriteria criteria)
        {
            bool cancel = false;

            OnFetching(criteria, ref cancel);
            if (cancel)
            {
                return(null);
            }

            //RaiseListChangedEvents = false;

            // Fetch Child objects.
            using (var connection = new SqlConnection(ADOHelper.ConnectionString))
            {
                connection.Open();
                using (var command = new SqlCommand("[dbo].[spCFM_BankAccountCard_Select]", connection))
                {
                    command.CommandType = CommandType.StoredProcedure;

                    command.Parameters.AddRange(ADOHelper.SqlParameters(criteria.StateBag));
                    command.Parameters.AddWithValue("@p_HeldByStaffIDHasValue", criteria.HeldByStaffIDHasValue);
                    command.Parameters.AddWithValue("@p_HeldFromHasValue", criteria.HeldFromHasValue);
                    command.Parameters.AddWithValue("@p_HeldToHasValue", criteria.HeldToHasValue);
                    command.Parameters.AddWithValue("@p_UpdatedByHasValue", criteria.UpdatedByHasValue);
                    command.Parameters.AddWithValue("@p_UpdatedOnHasValue", criteria.UpdatedOnHasValue);
                    using (var reader = command.ExecuteReader())
                    {
                        if (reader.Read())
                        {
                            var rowParser = reader.GetRowParser <CFMData.BankAccountCard>();
                            do
                            {
                                this.Add(CFMData.BankAccountCard.GetBankAccountCard(rowParser, reader));
                            }while(reader.Read());
                        }
                        OnFetched();
                        return(this);
                    }
                }
            }

            //RaiseListChangedEvents = true;
        }
Beispiel #9
0
        private BankAccountCard DataPortal_Fetch(BankAccountCardCriteria criteria)
        {
            bool cancel = false;

            OnFetching(criteria, ref cancel);
            if (cancel)
            {
                return(null);
            }
            using (var connection = new SqlConnection(ADOHelper.ConnectionString))
            {
                connection.Open();
                using (var command = new SqlCommand("[dbo].[spCFM_BankAccountCard_Select]", connection))
                {
                    command.CommandType = CommandType.StoredProcedure;
                    command.Parameters.AddRange(ADOHelper.SqlParameters(criteria.StateBag));
                    command.Parameters.AddWithValue("@p_HeldByStaffIDHasValue", criteria.HeldByStaffIDHasValue);
                    command.Parameters.AddWithValue("@p_HeldFromHasValue", criteria.HeldFromHasValue);
                    command.Parameters.AddWithValue("@p_HeldToHasValue", criteria.HeldToHasValue);
                    command.Parameters.AddWithValue("@p_UpdatedByHasValue", criteria.UpdatedByHasValue);
                    command.Parameters.AddWithValue("@p_UpdatedOnHasValue", criteria.UpdatedOnHasValue);
                    using (var reader = command.ExecuteReader())
                    {
                        var rowParser = reader.GetRowParser <BankAccountCard>();
                        if (reader.Read())
                        {
                            return(GetBankAccountCard(rowParser, reader));
                        }
                        else
                        {
                            throw new Exception(String.Format("The record was not found in 'dbo.BankAccountCard' using the following criteria: {0}.", criteria));
                        }
                    }
                }
            }
            OnFetched();
        }
Beispiel #10
0
 /// <summary>
 /// CodeSmith generated stub method that is called when deleting the child <see cref="BankAccountCard"/> object.
 /// </summary>
 /// <param name="criteria"><see cref="BankAccountCardCriteria"/> object containing the criteria of the object to delete.</param>
 /// <param name="cancel">Value returned from the method indicating whether the object deletion should proceed.</param>
 //partial void OnDeleting(BankAccountCardCriteria criteria, ref bool cancel);
 /// <summary>
 /// CodeSmith generated stub method that is called when deleting the child <see cref="BankAccountCard"/> object.
 /// </summary>
 /// <param name="criteria"><see cref="BankAccountCardCriteria"/> object containing the criteria of the object to delete.</param>
 /// <param name="connection"></param>
 /// <param name="cancel">Value returned from the method indicating whether the object deletion should proceed.</param>
 partial void OnDeleting(BankAccountCardCriteria criteria, SqlConnection connection, ref bool cancel);
Beispiel #11
0
 /// <summary>
 /// CodeSmith generated stub method that is called when fetching the child <see cref="BankAccountCard"/> object.
 /// </summary>
 /// <param name="criteria"><see cref="BankAccountCardCriteria"/> object containing the criteria of the object to fetch.</param>
 /// <param name="cancel">Value returned from the method indicating whether the object fetching should proceed.</param>
 partial void OnChildFetching(BankAccountCardCriteria criteria, ref bool cancel);
Beispiel #12
0
 /// <summary>
 /// CodeSmith generated stub method that is called when deleting the <see cref="BankAccountCard"/> object.
 /// </summary>
 /// <param name="criteria"><see cref="BankAccountCardCriteria"/> object containing the criteria of the object to delete.</param>
 /// <param name="cancel">Value returned from the method indicating whether the object deletion should proceed.</param>
 partial void OnDeleting(BankAccountCardCriteria criteria, ref bool cancel);
Beispiel #13
0
        public static BankAccountCardList GetByCriteria(BankAccountCardCriteria criteria)
        {
            return(new BankAccountCardList().DataPortal_Fetch(criteria));
//            return DataPortal.Fetch<BankAccountCardList>(criteria);
        }