예제 #1
0
 // copy all rows from a List of SOAP Contracts to a List of serialized data objects
 // links:
 //  docLink: http://sql2x.org/documentationLink/1c6c6b9c-e201-4590-8c69-d38a0ad2a9f7
 public static void ContractListToDataList(List <CrudeClientEventContract> contractList, List <CrudeClientEventData> dataList)
 {
     foreach (CrudeClientEventContract contract in contractList)
     {
         var data = new CrudeClientEventData();
         CrudeClientEventService.ContractToData(contract, data);
         dataList.Add(data);
     }
 }
예제 #2
0
        // fetch by Primary key into current object
        // links:
        //  docLink: http://sql2x.org/documentationLink/bbab4791-c9e7-49bf-90d5-fca19b1fedaa
        // parameters:
        //  clientEventId: primary key of table client_event
        public CrudeClientEventContract FetchByClientEventId(System.Guid clientEventId)
        {
            var dataAccessLayer = new CrudeClientEventData();
            var contract        = new CrudeClientEventContract();

            dataAccessLayer.FetchByClientEventId(clientEventId);
            DataToContract(dataAccessLayer, contract);

            return(contract);
        }
예제 #3
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 <CrudeClientEventContract> FetchAllWithLimitAndOffset(int limit, int offset)
        {
            var list = new List <CrudeClientEventContract>();
            List <CrudeClientEventData> dataList = CrudeClientEventData.FetchAllWithLimitAndOffset(limit, offset);

            foreach (CrudeClientEventData crudeClientEvent in dataList)
            {
                var contract = new CrudeClientEventContract();
                DataToContract(crudeClientEvent, contract);
                list.Add(contract);
            }

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

            foreach (CrudeClientEventData crudeClientEvent in dataList)
            {
                var contract = new CrudeClientEventContract();
                DataToContract(crudeClientEvent, contract);
                list.Add(contract);
            }

            return(list);
        }
예제 #5
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 <CrudeClientEventContract> FetchWithFilter(System.Guid clientEventId, System.Guid clientId, string clientEventTypeRcd, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeClientEventContract>();
            List <CrudeClientEventData> dataList = CrudeClientEventData.FetchWithFilter(
                clientEventId: clientEventId,
                clientId: clientId,
                clientEventTypeRcd: clientEventTypeRcd,
                userId: userId,
                dateTime: dateTime
                );

            foreach (CrudeClientEventData data in dataList)
            {
                var crudeClientEventContract = new CrudeClientEventContract();
                DataToContract(data, crudeClientEventContract);
                list.Add(crudeClientEventContract);
            }

            return(list);
        }
예제 #6
0
 // delete a row in table based on primary key
 // links:
 //  docLink: http://sql2x.org/documentationLink/eb0597e0-8ea0-425c-88af-213a170bbd5e
 public void Delete(System.Guid clientEventId)
 {
     CrudeClientEventData.Delete(clientEventId);
 }
예제 #7
0
 // get a count of rows in table
 // links:
 //  docLink: http://sql2x.org/documentationLink/7cd5e52c-b3d7-4566-a27a-408d0732dd88
 public int FetchAllCount()
 {
     return(CrudeClientEventData.FetchAllCount());
 }
예제 #8
0
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeClientEventContract> FetchByClientEventTypeRcd(string clientEventTypeRcd)
 {
     return(DataListToContractList(CrudeClientEventData.FetchByClientEventTypeRcd(clientEventTypeRcd)));
 }
예제 #9
0
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeClientEventContract> FetchByUserId(System.Guid userId)
 {
     return(DataListToContractList(CrudeClientEventData.FetchByUserId(userId)));
 }