// update all object members on a row in table based on primary key
        // links:
        //  docLink: http://sql2x.org/documentationLink/ce75e72e-fb16-4f4e-a2e6-dbd079dfa206
        public void Update(CrudeFinancialPaymentCardContract contract)
        {
            var data = new CrudeFinancialPaymentCardData();

            ContractToData(contract, data);
            data.Update();
        }
        // update all object members on a row in table based on primary key, on a transaction
        // the transaction and or connection state is not changed in any way other than what SqlClient does to it.
        // it is the callers responsibility to commit or rollback the transaction
        // links:
        //  docLink: http://sql2x.org/documentationLink/b798ad6b-f4b8-466a-9086-6588a814fcf3
        public void Update(CrudeFinancialPaymentCardContract contract, SqlConnection connection, SqlTransaction transaction)
        {
            var data = new CrudeFinancialPaymentCardData();

            ContractToData(contract, data);
            data.Update(connection, transaction);
        }
        // insert all object members as a new row in table
        // links:
        //  docLink: http://sql2x.org/documentationLink/75aad010-e6aa-4f19-a6e5-597456aa20d8
        public void Insert(CrudeFinancialPaymentCardContract contract)
        {
            var data = new CrudeFinancialPaymentCardData();

            ContractToData(contract, data);
            data.Insert();
        }
        // fetch all rows from table into new List of Contracts, filtered by any column
        // links:
        //  docLink: http://sql2x.org/documentationLink/ce01ef4a-5cd0-4e51-b211-9c0a15b791a0
        public List <CrudeFinancialPaymentCardContract> FetchWithFilter(System.Guid financialPaymentCardId, string financialCardTypeRcd, string nameOnCard, string cardNumber, int cardVerificationValue, string addressVerificationCode, int issuedYear, int issuedMonth, int expiryYear, int expiryMonth, decimal amount, System.Guid financialCurrencyId, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeFinancialPaymentCardContract>();
            List <CrudeFinancialPaymentCardData> dataList = CrudeFinancialPaymentCardData.FetchWithFilter(
                financialPaymentCardId: financialPaymentCardId,
                financialCardTypeRcd: financialCardTypeRcd,
                nameOnCard: nameOnCard,
                cardNumber: cardNumber,
                cardVerificationValue: cardVerificationValue,
                addressVerificationCode: addressVerificationCode,
                issuedYear: issuedYear,
                issuedMonth: issuedMonth,
                expiryYear: expiryYear,
                expiryMonth: expiryMonth,
                amount: amount,
                financialCurrencyId: financialCurrencyId,
                userId: userId,
                dateTime: dateTime
                );

            foreach (CrudeFinancialPaymentCardData data in dataList)
            {
                var crudeFinancialPaymentCardContract = new CrudeFinancialPaymentCardContract();
                DataToContract(data, crudeFinancialPaymentCardContract);
                list.Add(crudeFinancialPaymentCardContract);
            }

            return(list);
        }
        // fetch by Primary key into current object
        // links:
        //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
        //  docLink: http://sql2x.org/documentationLink/bbab4791-c9e7-49bf-90d5-fca19b1fedaa
        // parameters:
        //  financialPaymentCardId: primary key of table financial_payment_card
        public CrudeFinancialPaymentCardContract FetchByFinancialPaymentCardId(System.Guid financialPaymentCardId)
        {
            var dataAccessLayer = new CrudeFinancialPaymentCardData();
            var contract        = new CrudeFinancialPaymentCardContract();

            dataAccessLayer.FetchByFinancialPaymentCardId(financialPaymentCardId);
            DataToContract(dataAccessLayer, contract);

            return(contract);
        }
        // copy all rows from a List of serialized data objects to a List of SOAP Contracts
        // links:
        //  docLink: http://sql2x.org/documentationLink/7467f97d-14e5-4ccf-9282-ef8df4f63088
        public static List <CrudeFinancialPaymentCardContract> DataListToContractList(List <CrudeFinancialPaymentCardData> dataList)
        {
            var contractList = new List <CrudeFinancialPaymentCardContract>();

            foreach (CrudeFinancialPaymentCardData data in dataList)
            {
                var contract = new CrudeFinancialPaymentCardContract();
                DataToContract(data, contract);
                contractList.Add(contract);
            }

            return(contractList);
        }
        // copy all rows from a List of serialized data objects to a List of SOAP Contracts,
        //  with a limit on number of returned rows and order by columns, starting at a specific row
        // links:
        //  docLink: http://sql2x.org/documentationLink/3fe9f1b3-97b6-4f58-a0f2-adfcbd973bfc
        public List <CrudeFinancialPaymentCardContract> FetchAllWithLimitAndOffset(int limit, int offset)
        {
            var list = new List <CrudeFinancialPaymentCardContract>();
            List <CrudeFinancialPaymentCardData> dataList = CrudeFinancialPaymentCardData.FetchAllWithLimitAndOffset(limit, offset);

            foreach (CrudeFinancialPaymentCardData crudeFinancialPaymentCard in dataList)
            {
                var contract = new CrudeFinancialPaymentCardContract();
                DataToContract(crudeFinancialPaymentCard, contract);
                list.Add(contract);
            }

            return(list);
        }
        // copy all rows from a List of serialized data objects in CrudeFinancialPaymentCardData to a List of SOAP Contracts
        // links:
        //  docLink: http://sql2x.org/documentationLink/9204c68e-93b8-4c77-af3c-3181985ff75f
        public List <CrudeFinancialPaymentCardContract> FetchAll()
        {
            var list = new List <CrudeFinancialPaymentCardContract>();
            List <CrudeFinancialPaymentCardData> dataList = CrudeFinancialPaymentCardData.FetchAll();

            foreach (CrudeFinancialPaymentCardData crudeFinancialPaymentCard in dataList)
            {
                var contract = new CrudeFinancialPaymentCardContract();
                DataToContract(crudeFinancialPaymentCard, contract);
                list.Add(contract);
            }

            return(list);
        }
 // copy all columns from a serialized data object to a SOAP Contract
 // links:
 //  docLink: http://sql2x.org/documentationLink/7553d6dd-da65-4a72-84c8-81f2f99ef4f5
 public static void DataToContract(CrudeFinancialPaymentCardData data, CrudeFinancialPaymentCardContract contract)
 {
     contract.FinancialPaymentCardId  = data.FinancialPaymentCardId;
     contract.FinancialCardTypeRcd    = data.FinancialCardTypeRcd;
     contract.NameOnCard              = data.NameOnCard;
     contract.CardNumber              = data.CardNumber;
     contract.CardVerificationValue   = data.CardVerificationValue;
     contract.AddressVerificationCode = data.AddressVerificationCode;
     contract.IssuedYear              = data.IssuedYear;
     contract.IssuedMonth             = data.IssuedMonth;
     contract.ExpiryYear              = data.ExpiryYear;
     contract.ExpiryMonth             = data.ExpiryMonth;
     contract.Amount = data.Amount;
     contract.FinancialCurrencyId = data.FinancialCurrencyId;
     contract.UserId   = data.UserId;
     contract.DateTime = data.DateTime;
 }
 // copy all columns from a SOAP Contract to a serialized data object
 // links:
 //  docLink: http://sql2x.org/documentationLink/10700d38-2227-4021-be12-2f4f206f5dd9
 public static void ContractToData(CrudeFinancialPaymentCardContract contract, CrudeFinancialPaymentCardData data)
 {
     data.FinancialPaymentCardId  = contract.FinancialPaymentCardId;
     data.FinancialCardTypeRcd    = contract.FinancialCardTypeRcd;
     data.NameOnCard              = contract.NameOnCard;
     data.CardNumber              = contract.CardNumber;
     data.CardVerificationValue   = contract.CardVerificationValue;
     data.AddressVerificationCode = contract.AddressVerificationCode;
     data.IssuedYear              = contract.IssuedYear;
     data.IssuedMonth             = contract.IssuedMonth;
     data.ExpiryYear              = contract.ExpiryYear;
     data.ExpiryMonth             = contract.ExpiryMonth;
     data.Amount = contract.Amount;
     data.FinancialCurrencyId = contract.FinancialCurrencyId;
     data.UserId   = contract.UserId;
     data.DateTime = contract.DateTime;
 }