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

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

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

            ModelToData(model, data);
            data.Insert();
        }
Example #4
0
 // transfer data object to model object
 // links:
 //  docLink: http://sql2x.org/documentationLink/43d57600-5ff5-4ef8-9330-123773d100d3
 public static void DataToModel(CrudeProductData data, CrudeProductModel model)
 {
     model.ProductId       = data.ProductId;
     model.ProductName     = data.ProductName;
     model.StateRcd        = data.StateRcd;
     model.UserId          = data.UserId;
     model.DateTime        = data.DateTime;
     model.ProductBecameId = data.ProductBecameId;
 }
Example #5
0
 // transfer model object to data object
 // links:
 //  docLink: http://sql2x.org/documentationLink/95875d99-b7f7-4a9e-baa4-3fbe9925d8a2
 public static void ModelToData(CrudeProductModel model, CrudeProductData data)
 {
     data.ProductId       = model.ProductId;
     data.ProductName     = model.ProductName;
     data.StateRcd        = model.StateRcd;
     data.UserId          = model.UserId;
     data.DateTime        = model.DateTime;
     data.ProductBecameId = model.ProductBecameId;
 }
Example #6
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:
        //  ProductName: key of table CrudeProductData
        public CrudeProductModel FetchByProductName(string productName)
        {
            var dataAccessLayer = new CrudeProductData();
            var model           = new CrudeProductModel();

            dataAccessLayer.FetchByProductName(productName);
            DataToModel(dataAccessLayer, model);

            return(model);
        }
Example #7
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:
        //  CrudeProductData: primary key of table CrudeProductData
        public CrudeProductModel FetchByProductId(System.Guid productId)
        {
            var dataAccessLayer = new CrudeProductData();
            var model           = new CrudeProductModel();

            dataAccessLayer.FetchByProductId(productId);
            DataToModel(dataAccessLayer, model);

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

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

            return(modelList);
        }
Example #9
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 <CrudeProductModel> FetchWithFilter(System.Guid productId, string productName, string stateRcd, System.Guid userId, System.DateTime dateTime, System.Guid productBecameId)
        {
            var list = new List <CrudeProductModel>();
            List <CrudeProductData> dataList = CrudeProductData.FetchWithFilter(productId, productName, stateRcd, userId, dateTime, productBecameId);

            foreach (CrudeProductData data in dataList)
            {
                var crudeProductBusinessModel = new CrudeProductModel();
                DataToModel(data, crudeProductBusinessModel);
                list.Add(crudeProductBusinessModel);
            }

            return(list);
        }
Example #10
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 <CrudeProductModel> FetchAllWithLimitAndOffset(string limit, string offset)
        {
            var list = new List <CrudeProductModel>();
            List <CrudeProductData> dataList = CrudeProductData.FetchAllWithLimitAndOffset(int.Parse(limit), int.Parse(offset));

            foreach (CrudeProductData crudeProductBusiness in dataList)
            {
                var model = new CrudeProductModel();
                DataToModel(crudeProductBusiness, model);
                list.Add(model);
            }

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

            foreach (CrudeProductData crudeProductBusiness in dataList)
            {
                var model = new CrudeProductModel();
                DataToModel(crudeProductBusiness, model);
                list.Add(model);
            }

            return(list);
        }
Example #12
0
        public CrudeProductModel CrudeProductUpdate([Bind()] CrudeProductModel product)
        {
            new CrudeProductBusiness().Update(product);

            return(product);
        }
Example #13
0
        public CrudeProductModel CrudeProductCreate([Bind()] CrudeProductModel product)
        {
            new CrudeProductBusiness().Insert(product);

            return(product);
        }