// transfer model to data and update
        // links:
        //  docLink: http://sql2x.org/documentationLink/658fda50-2ad3-414e-9299-2b399d17a057
        public void Update(CrudeFinancialCostcentreModel model)
        {
            var data = new CrudeFinancialCostcentreData();

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

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

            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(CrudeFinancialCostcentreData data, CrudeFinancialCostcentreModel model)
 {
     model.FinancialCostcentreId   = data.FinancialCostcentreId;
     model.FinancialCostcentreCode = data.FinancialCostcentreCode;
     model.FinancialCostcentreName = data.FinancialCostcentreName;
     model.FinancialCompanyId      = data.FinancialCompanyId;
     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(CrudeFinancialCostcentreModel model, CrudeFinancialCostcentreData data)
 {
     data.FinancialCostcentreId   = model.FinancialCostcentreId;
     data.FinancialCostcentreCode = model.FinancialCostcentreCode;
     data.FinancialCostcentreName = model.FinancialCostcentreName;
     data.FinancialCompanyId      = model.FinancialCompanyId;
     data.UserId   = model.UserId;
     data.DateTime = model.DateTime;
 }
        // 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:
        //  FinancialCostcentreCode: key of table CrudeFinancialCostcentreData
        public CrudeFinancialCostcentreModel FetchByFinancialCostcentreCode(string financialCostcentreCode)
        {
            var dataAccessLayer = new CrudeFinancialCostcentreData();
            var model           = new CrudeFinancialCostcentreModel();

            dataAccessLayer.FetchByFinancialCostcentreCode(financialCostcentreCode);
            DataToModel(dataAccessLayer, model);

            return(model);
        }
        // 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:
        //  CrudeFinancialCostcentreData: primary key of table CrudeFinancialCostcentreData
        public CrudeFinancialCostcentreModel FetchByFinancialCostcentreId(System.Guid financialCostcentreId)
        {
            var dataAccessLayer = new CrudeFinancialCostcentreData();
            var model           = new CrudeFinancialCostcentreModel();

            dataAccessLayer.FetchByFinancialCostcentreId(financialCostcentreId);
            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:
        //  CrudeFinancialCostcentreData: key of table CrudeFinancialCostcentreData
        public static List <CrudeFinancialCostcentreModel> DataListToModelList(List <CrudeFinancialCostcentreData> dataList)
        {
            var modelList = new List <CrudeFinancialCostcentreModel>();

            foreach (CrudeFinancialCostcentreData data in dataList)
            {
                var model = new CrudeFinancialCostcentreModel();
                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 <CrudeFinancialCostcentreModel> FetchWithFilter(System.Guid financialCostcentreId, string financialCostcentreCode, string financialCostcentreName, System.Guid financialCompanyId, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeFinancialCostcentreModel>();
            List <CrudeFinancialCostcentreData> dataList = CrudeFinancialCostcentreData.FetchWithFilter(financialCostcentreId, financialCostcentreCode, financialCostcentreName, financialCompanyId, userId, dateTime);

            foreach (CrudeFinancialCostcentreData data in dataList)
            {
                var crudeFinancialCostcentreBusinessModel = new CrudeFinancialCostcentreModel();
                DataToModel(data, crudeFinancialCostcentreBusinessModel);
                list.Add(crudeFinancialCostcentreBusinessModel);
            }

            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 <CrudeFinancialCostcentreModel> FetchAllWithLimitAndOffset(string limit, string offset)
        {
            var list = new List <CrudeFinancialCostcentreModel>();
            List <CrudeFinancialCostcentreData> dataList = CrudeFinancialCostcentreData.FetchAllWithLimitAndOffset(int.Parse(limit), int.Parse(offset));

            foreach (CrudeFinancialCostcentreData crudeFinancialCostcentreBusiness in dataList)
            {
                var model = new CrudeFinancialCostcentreModel();
                DataToModel(crudeFinancialCostcentreBusiness, model);
                list.Add(model);
            }

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

            foreach (CrudeFinancialCostcentreData crudeFinancialCostcentreBusiness in dataList)
            {
                var model = new CrudeFinancialCostcentreModel();
                DataToModel(crudeFinancialCostcentreBusiness, model);
                list.Add(model);
            }

            return(list);
        }
Exemplo n.º 12
0
        public CrudeFinancialCostcentreModel CrudeFinancialCostcentreUpdate([Bind()] CrudeFinancialCostcentreModel financialCostcentre)
        {
            new CrudeFinancialCostcentreBusiness().Update(financialCostcentre);

            return(financialCostcentre);
        }
Exemplo n.º 13
0
        public CrudeFinancialCostcentreModel CrudeFinancialCostcentreCreate([Bind()] CrudeFinancialCostcentreModel financialCostcentre)
        {
            new CrudeFinancialCostcentreBusiness().Insert(financialCostcentre);

            return(financialCostcentre);
        }