// transfer model to data and update, on a transaction
        // links:
        //  docLink: http://sql2x.org/documentationLink/aa07e05b-edc8-4e09-bf93-bf2a40c93c09
        public void Update(CrudeFinancialPaymentCouponModel model, SqlConnection connection, SqlTransaction transaction)
        {
            var data = new CrudeFinancialPaymentCouponData();

            ModelToData(model, data);
            data.Update(connection, transaction);
        }
        // transfer model to data and update
        // links:
        //  docLink: http://sql2x.org/documentationLink/658fda50-2ad3-414e-9299-2b399d17a057
        public void Update(CrudeFinancialPaymentCouponModel model)
        {
            var data = new CrudeFinancialPaymentCouponData();

            ModelToData(model, data);
            data.Update();
        }
        // transfer model to data and insert
        // links:
        //  docLink: http://sql2x.org/documentationLink/17cd8423-3c78-459f-a45b-773fcfbc3b7d
        public void Insert(CrudeFinancialPaymentCouponModel model)
        {
            var data = new CrudeFinancialPaymentCouponData();

            ModelToData(model, data);
            data.Insert();
        }
 // transfer data object to model object
 // links:
 //  docLink: http://sql2x.org/documentationLink/43d57600-5ff5-4ef8-9330-123773d100d3
 public static void DataToModel(CrudeFinancialPaymentCouponData data, CrudeFinancialPaymentCouponModel model)
 {
     model.FinancialPaymentCouponId = data.FinancialPaymentCouponId;
     model.Amount = data.Amount;
     model.FinancialCurrencyId = data.FinancialCurrencyId;
     model.FinancialCouponId   = data.FinancialCouponId;
     model.UserId   = data.UserId;
     model.DateTime = data.DateTime;
 }
 // transfer model object to data object
 // links:
 //  docLink: http://sql2x.org/documentationLink/95875d99-b7f7-4a9e-baa4-3fbe9925d8a2
 public static void ModelToData(CrudeFinancialPaymentCouponModel model, CrudeFinancialPaymentCouponData data)
 {
     data.FinancialPaymentCouponId = model.FinancialPaymentCouponId;
     data.Amount = model.Amount;
     data.FinancialCurrencyId = model.FinancialCurrencyId;
     data.FinancialCouponId   = model.FinancialCouponId;
     data.UserId   = model.UserId;
     data.DateTime = model.DateTime;
 }
        // 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:
        //  CrudeFinancialPaymentCouponData: primary key of table CrudeFinancialPaymentCouponData
        public CrudeFinancialPaymentCouponModel FetchByFinancialPaymentCouponId(System.Guid financialPaymentCouponId)
        {
            var dataAccessLayer = new CrudeFinancialPaymentCouponData();
            var model           = new CrudeFinancialPaymentCouponModel();

            dataAccessLayer.FetchByFinancialPaymentCouponId(financialPaymentCouponId);
            DataToModel(dataAccessLayer, model);

            return(model);
        }
        // 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:
        //  CrudeFinancialPaymentCouponData: key of table CrudeFinancialPaymentCouponData
        public static List <CrudeFinancialPaymentCouponModel> DataListToModelList(List <CrudeFinancialPaymentCouponData> dataList)
        {
            var modelList = new List <CrudeFinancialPaymentCouponModel>();

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

            return(modelList);
        }
        // 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 <CrudeFinancialPaymentCouponModel> FetchWithFilter(System.Guid financialPaymentCouponId, decimal amount, System.Guid financialCurrencyId, System.Guid financialCouponId, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeFinancialPaymentCouponModel>();
            List <CrudeFinancialPaymentCouponData> dataList = CrudeFinancialPaymentCouponData.FetchWithFilter(financialPaymentCouponId, amount, financialCurrencyId, financialCouponId, userId, dateTime);

            foreach (CrudeFinancialPaymentCouponData data in dataList)
            {
                var crudeFinancialPaymentCouponBusinessModel = new CrudeFinancialPaymentCouponModel();
                DataToModel(data, crudeFinancialPaymentCouponBusinessModel);
                list.Add(crudeFinancialPaymentCouponBusinessModel);
            }

            return(list);
        }
        // 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 <CrudeFinancialPaymentCouponModel> FetchAllWithLimitAndOffset(string limit, string offset)
        {
            var list = new List <CrudeFinancialPaymentCouponModel>();
            List <CrudeFinancialPaymentCouponData> dataList = CrudeFinancialPaymentCouponData.FetchAllWithLimitAndOffset(int.Parse(limit), int.Parse(offset));

            foreach (CrudeFinancialPaymentCouponData crudeFinancialPaymentCouponBusiness in dataList)
            {
                var model = new CrudeFinancialPaymentCouponModel();
                DataToModel(crudeFinancialPaymentCouponBusiness, model);
                list.Add(model);
            }

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

            foreach (CrudeFinancialPaymentCouponData crudeFinancialPaymentCouponBusiness in dataList)
            {
                var model = new CrudeFinancialPaymentCouponModel();
                DataToModel(crudeFinancialPaymentCouponBusiness, model);
                list.Add(model);
            }

            return(list);
        }
예제 #11
0
        public CrudeFinancialPaymentCouponModel CrudeFinancialPaymentCouponUpdate([Bind()] CrudeFinancialPaymentCouponModel financialPaymentCoupon)
        {
            new CrudeFinancialPaymentCouponBusiness().Update(financialPaymentCoupon);

            return(financialPaymentCoupon);
        }
예제 #12
0
        public CrudeFinancialPaymentCouponModel CrudeFinancialPaymentCouponCreate([Bind()] CrudeFinancialPaymentCouponModel financialPaymentCoupon)
        {
            new CrudeFinancialPaymentCouponBusiness().Insert(financialPaymentCoupon);

            return(financialPaymentCoupon);
        }