Exemplo n.º 1
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);
        }
Exemplo n.º 2
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();
        }
Exemplo n.º 3
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();
        }
Exemplo n.º 4
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);
        }
Exemplo n.º 5
0
        // transfer data list to model list
        // links:
        //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
        //  docLink: http://sql2x.org/documentationLink/b8ab5693-f2f2-494f-883e-89b617113511
        // parameters:
        //  CrudeFinancialPaymentCardData: key of table CrudeFinancialPaymentCardData
        public static List <CrudeFinancialPaymentCardModel> DataListToModelList(List <CrudeFinancialPaymentCardData> dataList)
        {
            var modelList = new List <CrudeFinancialPaymentCardModel>();

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

            return(modelList);
        }
Exemplo n.º 6
0
        // fetch all from table into new List of class instances, filtered by any column
        // links:
        //  docLink: http://sql2x.org/documentationLink/db27658d-4d23-46d7-9970-7bbaef8634b0
        public List <CrudeFinancialPaymentCardModel> 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 <CrudeFinancialPaymentCardModel>();
            List <CrudeFinancialPaymentCardData> dataList = CrudeFinancialPaymentCardData.FetchWithFilter(financialPaymentCardId, financialCardTypeRcd, nameOnCard, cardNumber, cardVerificationValue, addressVerificationCode, issuedYear, issuedMonth, expiryYear, expiryMonth, amount, financialCurrencyId, userId, dateTime);

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

            return(list);
        }
Exemplo n.º 7
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);
        }
Exemplo n.º 8
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);
        }
Exemplo n.º 9
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;
 }
Exemplo n.º 10
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;
 }
Exemplo n.º 11
0
        public CrudeFinancialPaymentCardModel CrudeFinancialPaymentCardUpdate([Bind()] CrudeFinancialPaymentCardModel financialPaymentCard)
        {
            new CrudeFinancialPaymentCardBusiness().Update(financialPaymentCard);

            return(financialPaymentCard);
        }
Exemplo n.º 12
0
        public CrudeFinancialPaymentCardModel CrudeFinancialPaymentCardCreate([Bind()] CrudeFinancialPaymentCardModel financialPaymentCard)
        {
            new CrudeFinancialPaymentCardBusiness().Insert(financialPaymentCard);

            return(financialPaymentCard);
        }