// 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();
        }
        // 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();
        }
Beispiel #3
0
        // transfer model to data and insert
        // links:
        //  docLink: http://sql2x.org/documentationLink/17cd8423-3c78-459f-a45b-773fcfbc3b7d
        public void Insert(CrudeFinancialPaymentCardModel model)
        {
            var data = new CrudeFinancialPaymentCardData();

            ModelToData(model, 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);
        }
Beispiel #5
0
        // transfer model to data and update
        // links:
        //  docLink: http://sql2x.org/documentationLink/658fda50-2ad3-414e-9299-2b399d17a057
        public void Update(CrudeFinancialPaymentCardModel model)
        {
            var data = new CrudeFinancialPaymentCardData();

            ModelToData(model, data);
            data.Update();
        }
Beispiel #6
0
        // transfer model to data and update, on a transaction
        // links:
        //  docLink: http://sql2x.org/documentationLink/aa07e05b-edc8-4e09-bf93-bf2a40c93c09
        public void Update(CrudeFinancialPaymentCardModel model, SqlConnection connection, SqlTransaction transaction)
        {
            var data = new CrudeFinancialPaymentCardData();

            ModelToData(model, data);
            data.Update(connection, transaction);
        }
        // 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);
        }
 // copy all rows from a List of SOAP Contracts to a List of serialized data objects
 // links:
 //  docLink: http://sql2x.org/documentationLink/1c6c6b9c-e201-4590-8c69-d38a0ad2a9f7
 public static void ContractListToDataList(List <CrudeFinancialPaymentCardContract> contractList, List <CrudeFinancialPaymentCardData> dataList)
 {
     foreach (CrudeFinancialPaymentCardContract contract in contractList)
     {
         var data = new CrudeFinancialPaymentCardData();
         CrudeFinancialPaymentCardService.ContractToData(contract, data);
         dataList.Add(data);
     }
 }
Beispiel #9
0
 // transfer model list to data list
 // links:
 //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
 //  docLink: http://sql2x.org/documentationLink/1d6a48d9-fe39-4397-b8fa-a332da164cbf
 // parameters:
 //  CrudeFinancialPaymentCardData: key of table CrudeFinancialPaymentCardData
 public static void ModelListToDataList(List <CrudeFinancialPaymentCardModel> modelList, List <CrudeFinancialPaymentCardData> dataList)
 {
     foreach (CrudeFinancialPaymentCardModel model in modelList)
     {
         var data = new CrudeFinancialPaymentCardData();
         ModelToData(model, data);
         dataList.Add(data);
     }
 }
        // 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);
        }
Beispiel #11
0
        // 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/fdcc33b4-08f1-43c3-ae28-95fbf029c3bd
        // parameters:
        //  CrudeFinancialPaymentCardData: primary key of table CrudeFinancialPaymentCardData
        public CrudeFinancialPaymentCardModel FetchByFinancialPaymentCardId(System.Guid financialPaymentCardId)
        {
            var dataAccessLayer = new CrudeFinancialPaymentCardData();
            var model           = new CrudeFinancialPaymentCardModel();

            dataAccessLayer.FetchByFinancialPaymentCardId(financialPaymentCardId);
            DataToModel(dataAccessLayer, model);

            return(model);
        }
        // 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);
        }
Beispiel #14
0
        // fetch all rows from table with an offset, and limit of rows
        // links:
        //  docLink: http://sql2x.org/documentationLink/a87e5c54-b47e-4031-bc3b-837b4cf9f692
        public List <CrudeFinancialPaymentCardModel> FetchAllWithLimitAndOffset(string limit, string offset)
        {
            var list = new List <CrudeFinancialPaymentCardModel>();
            List <CrudeFinancialPaymentCardData> dataList = CrudeFinancialPaymentCardData.FetchAllWithLimitAndOffset(int.Parse(limit), int.Parse(offset));

            foreach (CrudeFinancialPaymentCardData crudeFinancialPaymentCardBusiness in dataList)
            {
                var model = new CrudeFinancialPaymentCardModel();
                DataToModel(crudeFinancialPaymentCardBusiness, model);
                list.Add(model);
            }

            return(list);
        }
Beispiel #15
0
        // copy all rows from a List of serialized data objects in CrudeFinancialPaymentCardData to a List of SOAP Contracts
        // links:
        //  docLink: http://sql2x.org/documentationLink/3d3e60c3-69e4-43d6-8bd5-14a67a6ecf58
        public List <CrudeFinancialPaymentCardModel> FetchAll()
        {
            var list = new List <CrudeFinancialPaymentCardModel>();
            List <CrudeFinancialPaymentCardData> dataList = CrudeFinancialPaymentCardData.FetchAll();

            foreach (CrudeFinancialPaymentCardData crudeFinancialPaymentCardBusiness in dataList)
            {
                var model = new CrudeFinancialPaymentCardModel();
                DataToModel(crudeFinancialPaymentCardBusiness, model);
                list.Add(model);
            }

            return(list);
        }
Beispiel #16
0
 // transfer data object to model object
 // links:
 //  docLink: http://sql2x.org/documentationLink/43d57600-5ff5-4ef8-9330-123773d100d3
 public static void DataToModel(CrudeFinancialPaymentCardData data, CrudeFinancialPaymentCardModel model)
 {
     model.FinancialPaymentCardId  = data.FinancialPaymentCardId;
     model.FinancialCardTypeRcd    = data.FinancialCardTypeRcd;
     model.NameOnCard              = data.NameOnCard;
     model.CardNumber              = data.CardNumber;
     model.CardVerificationValue   = data.CardVerificationValue;
     model.AddressVerificationCode = data.AddressVerificationCode;
     model.IssuedYear              = data.IssuedYear;
     model.IssuedMonth             = data.IssuedMonth;
     model.ExpiryYear              = data.ExpiryYear;
     model.ExpiryMonth             = data.ExpiryMonth;
     model.Amount = data.Amount;
     model.FinancialCurrencyId = data.FinancialCurrencyId;
     model.UserId   = data.UserId;
     model.DateTime = data.DateTime;
 }
Beispiel #17
0
 // transfer model object to data object
 // links:
 //  docLink: http://sql2x.org/documentationLink/95875d99-b7f7-4a9e-baa4-3fbe9925d8a2
 public static void ModelToData(CrudeFinancialPaymentCardModel model, CrudeFinancialPaymentCardData data)
 {
     data.FinancialPaymentCardId  = model.FinancialPaymentCardId;
     data.FinancialCardTypeRcd    = model.FinancialCardTypeRcd;
     data.NameOnCard              = model.NameOnCard;
     data.CardNumber              = model.CardNumber;
     data.CardVerificationValue   = model.CardVerificationValue;
     data.AddressVerificationCode = model.AddressVerificationCode;
     data.IssuedYear              = model.IssuedYear;
     data.IssuedMonth             = model.IssuedMonth;
     data.ExpiryYear              = model.ExpiryYear;
     data.ExpiryMonth             = model.ExpiryMonth;
     data.Amount = model.Amount;
     data.FinancialCurrencyId = model.FinancialCurrencyId;
     data.UserId   = model.UserId;
     data.DateTime = model.DateTime;
 }
 // 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;
 }
Beispiel #19
0
 // fetch by Search key into current object
 // links:
 //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
 //  docLink: http://sql2x.org/documentationLink/87368fa6-b618-4f0c-acbb-1fc4e273bb2d
 // parameters:
 //  FinancialCardTypeRcd: key of table CrudeFinancialPaymentCardData
 public List <CrudeFinancialPaymentCardModel> FetchByFinancialCardTypeRcd(string financialCardTypeRcd)
 {
     return(DataListToModelList(CrudeFinancialPaymentCardData.FetchByFinancialCardTypeRcd(financialCardTypeRcd)));
 }
Beispiel #20
0
 // delete row
 // links:
 //  docLink: http://sql2x.org/documentationLink/59823bf7-4ad8-4684-a48b-2abd49c607ee
 public void Delete(System.Guid financialPaymentCardId)
 {
     CrudeFinancialPaymentCardData.Delete(financialPaymentCardId);
 }
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeFinancialPaymentCardContract> FetchByFinancialCardTypeRcd(string financialCardTypeRcd)
 {
     return(DataListToContractList(CrudeFinancialPaymentCardData.FetchByFinancialCardTypeRcd(financialCardTypeRcd)));
 }
Beispiel #22
0
 // get a count of rows in table
 // links:
 //  docLink: http://sql2x.org/documentationLink/39677f9e-daee-45c6-9527-da98a0d7958d
 public int FetchAllCount()
 {
     return(CrudeFinancialPaymentCardData.FetchAllCount());
 }
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeFinancialPaymentCardContract> FetchByUserId(System.Guid userId)
 {
     return(DataListToContractList(CrudeFinancialPaymentCardData.FetchByUserId(userId)));
 }
Beispiel #24
0
 // fetch by Search key into current object
 // links:
 //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
 //  docLink: http://sql2x.org/documentationLink/87368fa6-b618-4f0c-acbb-1fc4e273bb2d
 // parameters:
 //  FinancialCurrencyId: key of table CrudeFinancialPaymentCardData
 public List <CrudeFinancialPaymentCardModel> FetchByFinancialCurrencyId(System.Guid financialCurrencyId)
 {
     return(DataListToModelList(CrudeFinancialPaymentCardData.FetchByFinancialCurrencyId(financialCurrencyId)));
 }
 // 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;
 }
Beispiel #26
0
 // fetch by Search key into current object
 // links:
 //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
 //  docLink: http://sql2x.org/documentationLink/87368fa6-b618-4f0c-acbb-1fc4e273bb2d
 // parameters:
 //  UserId: key of table CrudeFinancialPaymentCardData
 public List <CrudeFinancialPaymentCardModel> FetchByUserId(System.Guid userId)
 {
     return(DataListToModelList(CrudeFinancialPaymentCardData.FetchByUserId(userId)));
 }
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeFinancialPaymentCardContract> FetchByFinancialCurrencyId(System.Guid financialCurrencyId)
 {
     return(DataListToContractList(CrudeFinancialPaymentCardData.FetchByFinancialCurrencyId(financialCurrencyId)));
 }