Esempio n. 1
0
        // update all object members on a row in table based on primary key, on a transaction
        // the transaction and or connection state is not changed in any way other than what SqlClient does to it.
        // it is the callers responsibility to commit or rollback the transaction
        // links:
        //  docLink: http://sql2x.org/documentationLink/b798ad6b-f4b8-466a-9086-6588a814fcf3
        public void Update(CrudeBookingContract contract, SqlConnection connection, SqlTransaction transaction)
        {
            var data = new CrudeBookingData();

            ContractToData(contract, data);
            data.Update(connection, transaction);
        }
Esempio n. 2
0
        // insert all object members as a new row in table
        // links:
        //  docLink: http://sql2x.org/documentationLink/75aad010-e6aa-4f19-a6e5-597456aa20d8
        public void Insert(CrudeBookingContract contract)
        {
            var data = new CrudeBookingData();

            ContractToData(contract, data);
            data.Insert();
        }
Esempio n. 3
0
        // update all object members on a row in table based on primary key
        // links:
        //  docLink: http://sql2x.org/documentationLink/ce75e72e-fb16-4f4e-a2e6-dbd079dfa206
        public void Update(CrudeBookingContract contract)
        {
            var data = new CrudeBookingData();

            ContractToData(contract, data);
            data.Update();
        }
Esempio n. 4
0
        // fetch all rows from table into new List of Contracts, filtered by any column
        // links:
        //  docLink: http://sql2x.org/documentationLink/ce01ef4a-5cd0-4e51-b211-9c0a15b791a0
        public List <CrudeBookingContract> FetchWithFilter(System.Guid bookingId, string receivedFrom, System.Guid addressId, string bookingSourceRcd, System.Guid externalSystemId, System.Guid agencyId, System.Guid financialCurrencyId, System.Guid financialCostcentreId, string comment, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeBookingContract>();
            List <CrudeBookingData> dataList = CrudeBookingData.FetchWithFilter(
                bookingId: bookingId,
                receivedFrom: receivedFrom,
                addressId: addressId,
                bookingSourceRcd: bookingSourceRcd,
                externalSystemId: externalSystemId,
                agencyId: agencyId,
                financialCurrencyId: financialCurrencyId,
                financialCostcentreId: financialCostcentreId,
                comment: comment,
                userId: userId,
                dateTime: dateTime
                );

            foreach (CrudeBookingData data in dataList)
            {
                var crudeBookingContract = new CrudeBookingContract();
                DataToContract(data, crudeBookingContract);
                list.Add(crudeBookingContract);
            }

            return(list);
        }
Esempio n. 5
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/bbab4791-c9e7-49bf-90d5-fca19b1fedaa
        // parameters:
        //  bookingId: primary key of table booking
        public CrudeBookingContract FetchByBookingId(System.Guid bookingId)
        {
            var dataAccessLayer = new CrudeBookingData();
            var contract        = new CrudeBookingContract();

            dataAccessLayer.FetchByBookingId(bookingId);
            DataToContract(dataAccessLayer, contract);

            return(contract);
        }
Esempio n. 6
0
        // copy all rows from a List of serialized data objects to a List of SOAP Contracts
        // links:
        //  docLink: http://sql2x.org/documentationLink/7467f97d-14e5-4ccf-9282-ef8df4f63088
        public static List <CrudeBookingContract> DataListToContractList(List <CrudeBookingData> dataList)
        {
            var contractList = new List <CrudeBookingContract>();

            foreach (CrudeBookingData data in dataList)
            {
                var contract = new CrudeBookingContract();
                DataToContract(data, contract);
                contractList.Add(contract);
            }

            return(contractList);
        }
Esempio n. 7
0
 // copy all columns from a serialized data object to a SOAP Contract
 // links:
 //  docLink: http://sql2x.org/documentationLink/7553d6dd-da65-4a72-84c8-81f2f99ef4f5
 public static void DataToContract(CrudeBookingData data, CrudeBookingContract contract)
 {
     contract.BookingId             = data.BookingId;
     contract.ReceivedFrom          = data.ReceivedFrom;
     contract.AddressId             = data.AddressId;
     contract.BookingSourceRcd      = data.BookingSourceRcd;
     contract.ExternalSystemId      = data.ExternalSystemId;
     contract.AgencyId              = data.AgencyId;
     contract.FinancialCurrencyId   = data.FinancialCurrencyId;
     contract.FinancialCostcentreId = data.FinancialCostcentreId;
     contract.Comment  = data.Comment;
     contract.UserId   = data.UserId;
     contract.DateTime = data.DateTime;
 }
Esempio n. 8
0
 // copy all columns from a SOAP Contract to a serialized data object
 // links:
 //  docLink: http://sql2x.org/documentationLink/10700d38-2227-4021-be12-2f4f206f5dd9
 public static void ContractToData(CrudeBookingContract contract, CrudeBookingData data)
 {
     data.BookingId             = contract.BookingId;
     data.ReceivedFrom          = contract.ReceivedFrom;
     data.AddressId             = contract.AddressId;
     data.BookingSourceRcd      = contract.BookingSourceRcd;
     data.ExternalSystemId      = contract.ExternalSystemId;
     data.AgencyId              = contract.AgencyId;
     data.FinancialCurrencyId   = contract.FinancialCurrencyId;
     data.FinancialCostcentreId = contract.FinancialCostcentreId;
     data.Comment  = contract.Comment;
     data.UserId   = contract.UserId;
     data.DateTime = contract.DateTime;
 }
Esempio n. 9
0
        // copy all rows from a List of serialized data objects to a List of SOAP Contracts,
        //  with a limit on number of returned rows and order by columns, starting at a specific row
        // links:
        //  docLink: http://sql2x.org/documentationLink/3fe9f1b3-97b6-4f58-a0f2-adfcbd973bfc
        public List <CrudeBookingContract> FetchAllWithLimitAndOffset(int limit, int offset)
        {
            var list = new List <CrudeBookingContract>();
            List <CrudeBookingData> dataList = CrudeBookingData.FetchAllWithLimitAndOffset(limit, offset);

            foreach (CrudeBookingData crudeBooking in dataList)
            {
                var contract = new CrudeBookingContract();
                DataToContract(crudeBooking, contract);
                list.Add(contract);
            }

            return(list);
        }
Esempio n. 10
0
        // copy all rows from a List of serialized data objects in CrudeBookingData to a List of SOAP Contracts
        // links:
        //  docLink: http://sql2x.org/documentationLink/9204c68e-93b8-4c77-af3c-3181985ff75f
        public List <CrudeBookingContract> FetchAll()
        {
            var list = new List <CrudeBookingContract>();
            List <CrudeBookingData> dataList = CrudeBookingData.FetchAll();

            foreach (CrudeBookingData crudeBooking in dataList)
            {
                var contract = new CrudeBookingContract();
                DataToContract(crudeBooking, contract);
                list.Add(contract);
            }

            return(list);
        }