コード例 #1
0
 // transfer model object to data object
 // links:
 //  docLink: http://sql2x.org/documentationLink/95875d99-b7f7-4a9e-baa4-3fbe9925d8a2
 public static void ModelToData(CrudeFinancialAdjustmentTypeRefModel model, CrudeFinancialAdjustmentTypeRefData data)
 {
     data.FinancialAdjustmentTypeRcd  = model.FinancialAdjustmentTypeRcd;
     data.FinancialAdjustmentTypeName = model.FinancialAdjustmentTypeName;
     data.UserId   = model.UserId;
     data.DateTime = model.DateTime;
 }
コード例 #2
0
 // transfer data object to model object
 // links:
 //  docLink: http://sql2x.org/documentationLink/43d57600-5ff5-4ef8-9330-123773d100d3
 public static void DataToModel(CrudeFinancialAdjustmentTypeRefData data, CrudeFinancialAdjustmentTypeRefModel model)
 {
     model.FinancialAdjustmentTypeRcd  = data.FinancialAdjustmentTypeRcd;
     model.FinancialAdjustmentTypeName = data.FinancialAdjustmentTypeName;
     model.UserId   = data.UserId;
     model.DateTime = data.DateTime;
 }
コード例 #3
0
        // transfer model to data and update, on a transaction
        // links:
        //  docLink: http://sql2x.org/documentationLink/aa07e05b-edc8-4e09-bf93-bf2a40c93c09
        public void Update(CrudeFinancialAdjustmentTypeRefModel model, SqlConnection connection, SqlTransaction transaction)
        {
            var data = new CrudeFinancialAdjustmentTypeRefData();

            ModelToData(model, data);
            data.Update(connection, transaction);
        }
コード例 #4
0
        // transfer model to data and update
        // links:
        //  docLink: http://sql2x.org/documentationLink/658fda50-2ad3-414e-9299-2b399d17a057
        public void Update(CrudeFinancialAdjustmentTypeRefModel model)
        {
            var data = new CrudeFinancialAdjustmentTypeRefData();

            ModelToData(model, data);
            data.Update();
        }
コード例 #5
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/ad2dd952-e3ec-471a-9e34-f5fc965b8b37
        // parameters:
        //  FinancialAdjustmentTypeName: key of table CrudeFinancialAdjustmentTypeRefData
        public CrudeFinancialAdjustmentTypeRefModel FetchByFinancialAdjustmentTypeName(string financialAdjustmentTypeName)
        {
            var dataAccessLayer = new CrudeFinancialAdjustmentTypeRefData();
            var model           = new CrudeFinancialAdjustmentTypeRefModel();

            dataAccessLayer.FetchByFinancialAdjustmentTypeName(financialAdjustmentTypeName);
            DataToModel(dataAccessLayer, model);

            return(model);
        }
コード例 #6
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:
        //  CrudeFinancialAdjustmentTypeRefData: key of table CrudeFinancialAdjustmentTypeRefData
        public static List <CrudeFinancialAdjustmentTypeRefModel> DataListToModelList(List <CrudeFinancialAdjustmentTypeRefData> dataList)
        {
            var modelList = new List <CrudeFinancialAdjustmentTypeRefModel>();

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

            return(modelList);
        }
コード例 #7
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 <CrudeFinancialAdjustmentTypeRefModel> FetchWithFilter(string financialAdjustmentTypeRcd, string financialAdjustmentTypeName, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeFinancialAdjustmentTypeRefModel>();
            List <CrudeFinancialAdjustmentTypeRefData> dataList = CrudeFinancialAdjustmentTypeRefData.FetchWithFilter(financialAdjustmentTypeRcd, financialAdjustmentTypeName, userId, dateTime);

            foreach (CrudeFinancialAdjustmentTypeRefData data in dataList)
            {
                var crudeFinancialAdjustmentTypeRefBusinessModel = new CrudeFinancialAdjustmentTypeRefModel();
                DataToModel(data, crudeFinancialAdjustmentTypeRefBusinessModel);
                list.Add(crudeFinancialAdjustmentTypeRefBusinessModel);
            }

            return(list);
        }
コード例 #8
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 <CrudeFinancialAdjustmentTypeRefModel> FetchAllWithLimitAndOffset(string limit, string offset)
        {
            var list = new List <CrudeFinancialAdjustmentTypeRefModel>();
            List <CrudeFinancialAdjustmentTypeRefData> dataList = CrudeFinancialAdjustmentTypeRefData.FetchAllWithLimitAndOffset(int.Parse(limit), int.Parse(offset));

            foreach (CrudeFinancialAdjustmentTypeRefData crudeFinancialAdjustmentTypeRefBusiness in dataList)
            {
                var model = new CrudeFinancialAdjustmentTypeRefModel();
                DataToModel(crudeFinancialAdjustmentTypeRefBusiness, model);
                list.Add(model);
            }

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

            foreach (CrudeFinancialAdjustmentTypeRefData crudeFinancialAdjustmentTypeRefBusiness in dataList)
            {
                var model = new CrudeFinancialAdjustmentTypeRefModel();
                DataToModel(crudeFinancialAdjustmentTypeRefBusiness, model);
                list.Add(model);
            }

            return(list);
        }
コード例 #10
0
        public CrudeFinancialAdjustmentTypeRefModel CrudeFinancialAdjustmentTypeRefUpdate([Bind()] CrudeFinancialAdjustmentTypeRefModel financialAdjustmentTypeRef)
        {
            new CrudeFinancialAdjustmentTypeRefBusiness().Update(financialAdjustmentTypeRef);

            return(financialAdjustmentTypeRef);
        }