示例#1
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(CrudeProductGatherSourceTypeRefData data, CrudeProductGatherSourceTypeRefContract contract)
 {
     contract.ProductGatherSourceTypeRcd  = data.ProductGatherSourceTypeRcd;
     contract.ProductGatherSourceTypeName = data.ProductGatherSourceTypeName;
     contract.UserId   = data.UserId;
     contract.DateTime = data.DateTime;
 }
示例#2
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(CrudeProductGatherSourceTypeRefContract contract, SqlConnection connection, SqlTransaction transaction)
        {
            var data = new CrudeProductGatherSourceTypeRefData();

            ContractToData(contract, data);
            data.Update(connection, transaction);
        }
示例#3
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(CrudeProductGatherSourceTypeRefContract contract, CrudeProductGatherSourceTypeRefData data)
 {
     data.ProductGatherSourceTypeRcd  = contract.ProductGatherSourceTypeRcd;
     data.ProductGatherSourceTypeName = contract.ProductGatherSourceTypeName;
     data.UserId   = contract.UserId;
     data.DateTime = contract.DateTime;
 }
示例#4
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(CrudeProductGatherSourceTypeRefContract contract)
        {
            var data = new CrudeProductGatherSourceTypeRefData();

            ContractToData(contract, data);
            data.Update();
        }
示例#5
0
        public CrudeProductGatherSourceTypeRefContract FetchByProductGatherSourceTypeName(string productGatherSourceTypeName)
        {
            var dataAccessLayer = new CrudeProductGatherSourceTypeRefData();
            var contract        = new CrudeProductGatherSourceTypeRefContract();

            dataAccessLayer.FetchByProductGatherSourceTypeName(productGatherSourceTypeName);
            DataToContract(dataAccessLayer, contract);

            return(contract);
        }
示例#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 <CrudeProductGatherSourceTypeRefContract> DataListToContractList(List <CrudeProductGatherSourceTypeRefData> dataList)
        {
            var contractList = new List <CrudeProductGatherSourceTypeRefContract>();

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

            return(contractList);
        }
示例#7
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 <CrudeProductGatherSourceTypeRefContract> FetchAllWithLimitAndOffset(int limit, int offset)
        {
            var list = new List <CrudeProductGatherSourceTypeRefContract>();
            List <CrudeProductGatherSourceTypeRefData> dataList = CrudeProductGatherSourceTypeRefData.FetchAllWithLimitAndOffset(limit, offset);

            foreach (CrudeProductGatherSourceTypeRefData crudeProductGatherSourceTypeRef in dataList)
            {
                var contract = new CrudeProductGatherSourceTypeRefContract();
                DataToContract(crudeProductGatherSourceTypeRef, contract);
                list.Add(contract);
            }

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

            foreach (CrudeProductGatherSourceTypeRefData crudeProductGatherSourceTypeRef in dataList)
            {
                var contract = new CrudeProductGatherSourceTypeRefContract();
                DataToContract(crudeProductGatherSourceTypeRef, contract);
                list.Add(contract);
            }

            return(list);
        }
示例#9
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 <CrudeProductGatherSourceTypeRefContract> FetchWithFilter(string productGatherSourceTypeRcd, string productGatherSourceTypeName, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeProductGatherSourceTypeRefContract>();
            List <CrudeProductGatherSourceTypeRefData> dataList = CrudeProductGatherSourceTypeRefData.FetchWithFilter(
                productGatherSourceTypeRcd: productGatherSourceTypeRcd,
                productGatherSourceTypeName: productGatherSourceTypeName,
                userId: userId,
                dateTime: dateTime
                );

            foreach (CrudeProductGatherSourceTypeRefData data in dataList)
            {
                var crudeProductGatherSourceTypeRefContract = new CrudeProductGatherSourceTypeRefContract();
                DataToContract(data, crudeProductGatherSourceTypeRefContract);
                list.Add(crudeProductGatherSourceTypeRefContract);
            }

            return(list);
        }