Exemple #1
0
 // transfer model object to data object
 // links:
 //  docLink: http://sql2x.org/documentationLink/95875d99-b7f7-4a9e-baa4-3fbe9925d8a2
 public static void ModelToData(CrudeFinancialPaymentTypeRefModel model, CrudeFinancialPaymentTypeRefData data)
 {
     data.FinancialPaymentTypeRcd  = model.FinancialPaymentTypeRcd;
     data.FinancialPaymentTypeName = model.FinancialPaymentTypeName;
     data.UserId   = model.UserId;
     data.DateTime = model.DateTime;
 }
Exemple #2
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(CrudeFinancialPaymentTypeRefContract contract)
        {
            var data = new CrudeFinancialPaymentTypeRefData();

            ContractToData(contract, data);
            data.Update();
        }
Exemple #3
0
 // transfer data object to model object
 // links:
 //  docLink: http://sql2x.org/documentationLink/43d57600-5ff5-4ef8-9330-123773d100d3
 public static void DataToModel(CrudeFinancialPaymentTypeRefData data, CrudeFinancialPaymentTypeRefModel model)
 {
     model.FinancialPaymentTypeRcd  = data.FinancialPaymentTypeRcd;
     model.FinancialPaymentTypeName = data.FinancialPaymentTypeName;
     model.UserId   = data.UserId;
     model.DateTime = data.DateTime;
 }
Exemple #4
0
        // transfer model to data and update
        // links:
        //  docLink: http://sql2x.org/documentationLink/658fda50-2ad3-414e-9299-2b399d17a057
        public void Update(CrudeFinancialPaymentTypeRefModel model)
        {
            var data = new CrudeFinancialPaymentTypeRefData();

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

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

            ModelToData(model, data);
            data.Insert();
        }
Exemple #7
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(CrudeFinancialPaymentTypeRefContract contract, SqlConnection connection, SqlTransaction transaction)
        {
            var data = new CrudeFinancialPaymentTypeRefData();

            ContractToData(contract, data);
            data.Update(connection, transaction);
        }
Exemple #8
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(CrudeFinancialPaymentTypeRefData data, CrudeFinancialPaymentTypeRefContract contract)
 {
     contract.FinancialPaymentTypeRcd  = data.FinancialPaymentTypeRcd;
     contract.FinancialPaymentTypeName = data.FinancialPaymentTypeName;
     contract.UserId   = data.UserId;
     contract.DateTime = data.DateTime;
 }
Exemple #9
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 <CrudeFinancialPaymentTypeRefContract> contractList, List <CrudeFinancialPaymentTypeRefData> dataList)
 {
     foreach (CrudeFinancialPaymentTypeRefContract contract in contractList)
     {
         var data = new CrudeFinancialPaymentTypeRefData();
         CrudeFinancialPaymentTypeRefService.ContractToData(contract, data);
         dataList.Add(data);
     }
 }
Exemple #10
0
 // transfer model list to data list
 // links:
 //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
 //  docLink: http://sql2x.org/documentationLink/1d6a48d9-fe39-4397-b8fa-a332da164cbf
 // parameters:
 //  CrudeFinancialPaymentTypeRefData: key of table CrudeFinancialPaymentTypeRefData
 public static void ModelListToDataList(List <CrudeFinancialPaymentTypeRefModel> modelList, List <CrudeFinancialPaymentTypeRefData> dataList)
 {
     foreach (CrudeFinancialPaymentTypeRefModel model in modelList)
     {
         var data = new CrudeFinancialPaymentTypeRefData();
         ModelToData(model, data);
         dataList.Add(data);
     }
 }
Exemple #11
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:
        //  FinancialPaymentTypeName: key of table CrudeFinancialPaymentTypeRefData
        public CrudeFinancialPaymentTypeRefModel FetchByFinancialPaymentTypeName(string financialPaymentTypeName)
        {
            var dataAccessLayer = new CrudeFinancialPaymentTypeRefData();
            var model           = new CrudeFinancialPaymentTypeRefModel();

            dataAccessLayer.FetchByFinancialPaymentTypeName(financialPaymentTypeName);
            DataToModel(dataAccessLayer, model);

            return(model);
        }
Exemple #12
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:
        //  financialPaymentTypeRcd: primary key of table financial_payment_type_ref
        public CrudeFinancialPaymentTypeRefContract FetchByFinancialPaymentTypeRcd(string financialPaymentTypeRcd)
        {
            var dataAccessLayer = new CrudeFinancialPaymentTypeRefData();
            var contract        = new CrudeFinancialPaymentTypeRefContract();

            dataAccessLayer.FetchByFinancialPaymentTypeRcd(financialPaymentTypeRcd);
            DataToContract(dataAccessLayer, contract);

            return(contract);
        }
Exemple #13
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 <CrudeFinancialPaymentTypeRefModel> FetchAllWithLimitAndOffset(string limit, string offset)
        {
            var list = new List <CrudeFinancialPaymentTypeRefModel>();
            List <CrudeFinancialPaymentTypeRefData> dataList = CrudeFinancialPaymentTypeRefData.FetchAllWithLimitAndOffset(int.Parse(limit), int.Parse(offset));

            foreach (CrudeFinancialPaymentTypeRefData crudeFinancialPaymentTypeRefBusiness in dataList)
            {
                var model = new CrudeFinancialPaymentTypeRefModel();
                DataToModel(crudeFinancialPaymentTypeRefBusiness, model);
                list.Add(model);
            }

            return(list);
        }
Exemple #14
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 <CrudeFinancialPaymentTypeRefContract> FetchAllWithLimitAndOffset(int limit, int offset)
        {
            var list = new List <CrudeFinancialPaymentTypeRefContract>();
            List <CrudeFinancialPaymentTypeRefData> dataList = CrudeFinancialPaymentTypeRefData.FetchAllWithLimitAndOffset(limit, offset);

            foreach (CrudeFinancialPaymentTypeRefData crudeFinancialPaymentTypeRef in dataList)
            {
                var contract = new CrudeFinancialPaymentTypeRefContract();
                DataToContract(crudeFinancialPaymentTypeRef, contract);
                list.Add(contract);
            }

            return(list);
        }
Exemple #15
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 <CrudeFinancialPaymentTypeRefModel> FetchWithFilter(string financialPaymentTypeRcd, string financialPaymentTypeName, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeFinancialPaymentTypeRefModel>();
            List <CrudeFinancialPaymentTypeRefData> dataList = CrudeFinancialPaymentTypeRefData.FetchWithFilter(financialPaymentTypeRcd, financialPaymentTypeName, userId, dateTime);

            foreach (CrudeFinancialPaymentTypeRefData data in dataList)
            {
                var crudeFinancialPaymentTypeRefBusinessModel = new CrudeFinancialPaymentTypeRefModel();
                DataToModel(data, crudeFinancialPaymentTypeRefBusinessModel);
                list.Add(crudeFinancialPaymentTypeRefBusinessModel);
            }

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

            foreach (CrudeFinancialPaymentTypeRefData crudeFinancialPaymentTypeRef in dataList)
            {
                var contract = new CrudeFinancialPaymentTypeRefContract();
                DataToContract(crudeFinancialPaymentTypeRef, contract);
                list.Add(contract);
            }

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

            foreach (CrudeFinancialPaymentTypeRefData crudeFinancialPaymentTypeRefBusiness in dataList)
            {
                var model = new CrudeFinancialPaymentTypeRefModel();
                DataToModel(crudeFinancialPaymentTypeRefBusiness, model);
                list.Add(model);
            }

            return(list);
        }
Exemple #18
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 <CrudeFinancialPaymentTypeRefContract> FetchWithFilter(string financialPaymentTypeRcd, string financialPaymentTypeName, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeFinancialPaymentTypeRefContract>();
            List <CrudeFinancialPaymentTypeRefData> dataList = CrudeFinancialPaymentTypeRefData.FetchWithFilter(
                financialPaymentTypeRcd: financialPaymentTypeRcd,
                financialPaymentTypeName: financialPaymentTypeName,
                userId: userId,
                dateTime: dateTime
                );

            foreach (CrudeFinancialPaymentTypeRefData data in dataList)
            {
                var crudeFinancialPaymentTypeRefContract = new CrudeFinancialPaymentTypeRefContract();
                DataToContract(data, crudeFinancialPaymentTypeRefContract);
                list.Add(crudeFinancialPaymentTypeRefContract);
            }

            return(list);
        }
Exemple #19
0
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeFinancialPaymentTypeRefContract> FetchByUserId(System.Guid userId)
 {
     return(DataListToContractList(CrudeFinancialPaymentTypeRefData.FetchByUserId(userId)));
 }
Exemple #20
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(CrudeFinancialPaymentTypeRefContract contract, CrudeFinancialPaymentTypeRefData data)
 {
     data.FinancialPaymentTypeRcd  = contract.FinancialPaymentTypeRcd;
     data.FinancialPaymentTypeName = contract.FinancialPaymentTypeName;
     data.UserId   = contract.UserId;
     data.DateTime = contract.DateTime;
 }
Exemple #21
0
 // delete a row in table based on primary key
 // links:
 //  docLink: http://sql2x.org/documentationLink/eb0597e0-8ea0-425c-88af-213a170bbd5e
 public void Delete(string financialPaymentTypeRcd)
 {
     CrudeFinancialPaymentTypeRefData.Delete(financialPaymentTypeRcd);
 }
Exemple #22
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/87368fa6-b618-4f0c-acbb-1fc4e273bb2d
 // parameters:
 //  UserId: key of table CrudeFinancialPaymentTypeRefData
 public List <CrudeFinancialPaymentTypeRefModel> FetchByUserId(System.Guid userId)
 {
     return(DataListToModelList(CrudeFinancialPaymentTypeRefData.FetchByUserId(userId)));
 }
Exemple #23
0
 // get a count of rows in table
 // links:
 //  docLink: http://sql2x.org/documentationLink/7cd5e52c-b3d7-4566-a27a-408d0732dd88
 public int FetchAllCount()
 {
     return(CrudeFinancialPaymentTypeRefData.FetchAllCount());
 }