Exemplo n.º 1
0
 // transfer data object to model object
 // links:
 //  docLink: http://sql2x.org/documentationLink/43d57600-5ff5-4ef8-9330-123773d100d3
 public static void DataToModel(CrudeBookingSourceRefData data, CrudeBookingSourceRefModel model)
 {
     model.BookingSourceRcd  = data.BookingSourceRcd;
     model.BookingSourceName = data.BookingSourceName;
     model.UserId            = data.UserId;
     model.DateTime          = data.DateTime;
 }
Exemplo n.º 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(CrudeBookingSourceRefModel model, SqlConnection connection, SqlTransaction transaction)
        {
            var data = new CrudeBookingSourceRefData();

            ModelToData(model, data);
            data.Update(connection, transaction);
        }
Exemplo n.º 3
0
 // transfer model object to data object
 // links:
 //  docLink: http://sql2x.org/documentationLink/95875d99-b7f7-4a9e-baa4-3fbe9925d8a2
 public static void ModelToData(CrudeBookingSourceRefModel model, CrudeBookingSourceRefData data)
 {
     data.BookingSourceRcd  = model.BookingSourceRcd;
     data.BookingSourceName = model.BookingSourceName;
     data.UserId            = model.UserId;
     data.DateTime          = model.DateTime;
 }
Exemplo n.º 4
0
        // transfer model to data and update
        // links:
        //  docLink: http://sql2x.org/documentationLink/658fda50-2ad3-414e-9299-2b399d17a057
        public void Update(CrudeBookingSourceRefModel model)
        {
            var data = new CrudeBookingSourceRefData();

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

            ModelToData(model, data);
            data.Insert();
        }
Exemplo n.º 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:
        //  BookingSourceName: key of table CrudeBookingSourceRefData
        public CrudeBookingSourceRefModel FetchByBookingSourceName(string bookingSourceName)
        {
            var dataAccessLayer = new CrudeBookingSourceRefData();
            var model           = new CrudeBookingSourceRefModel();

            dataAccessLayer.FetchByBookingSourceName(bookingSourceName);
            DataToModel(dataAccessLayer, model);

            return(model);
        }
Exemplo n.º 7
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:
        //  CrudeBookingSourceRefData: key of table CrudeBookingSourceRefData
        public static List <CrudeBookingSourceRefModel> DataListToModelList(List <CrudeBookingSourceRefData> dataList)
        {
            var modelList = new List <CrudeBookingSourceRefModel>();

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

            return(modelList);
        }
Exemplo n.º 8
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 <CrudeBookingSourceRefModel> FetchWithFilter(string bookingSourceRcd, string bookingSourceName, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeBookingSourceRefModel>();
            List <CrudeBookingSourceRefData> dataList = CrudeBookingSourceRefData.FetchWithFilter(bookingSourceRcd, bookingSourceName, userId, dateTime);

            foreach (CrudeBookingSourceRefData data in dataList)
            {
                var crudeBookingSourceRefBusinessModel = new CrudeBookingSourceRefModel();
                DataToModel(data, crudeBookingSourceRefBusinessModel);
                list.Add(crudeBookingSourceRefBusinessModel);
            }

            return(list);
        }
Exemplo n.º 9
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 <CrudeBookingSourceRefModel> FetchAllWithLimitAndOffset(string limit, string offset)
        {
            var list = new List <CrudeBookingSourceRefModel>();
            List <CrudeBookingSourceRefData> dataList = CrudeBookingSourceRefData.FetchAllWithLimitAndOffset(int.Parse(limit), int.Parse(offset));

            foreach (CrudeBookingSourceRefData crudeBookingSourceRefBusiness in dataList)
            {
                var model = new CrudeBookingSourceRefModel();
                DataToModel(crudeBookingSourceRefBusiness, model);
                list.Add(model);
            }

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

            foreach (CrudeBookingSourceRefData crudeBookingSourceRefBusiness in dataList)
            {
                var model = new CrudeBookingSourceRefModel();
                DataToModel(crudeBookingSourceRefBusiness, model);
                list.Add(model);
            }

            return(list);
        }
        public CrudeBookingSourceRefModel CrudeBookingSourceRefUpdate([Bind()] CrudeBookingSourceRefModel bookingSourceRef)
        {
            new CrudeBookingSourceRefBusiness().Update(bookingSourceRef);

            return(bookingSourceRef);
        }
        public CrudeBookingSourceRefModel CrudeBookingSourceRefCreate([Bind()] CrudeBookingSourceRefModel bookingSourceRef)
        {
            new CrudeBookingSourceRefBusiness().Insert(bookingSourceRef);

            return(bookingSourceRef);
        }