// 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:
        //  financialTaxId: primary key of table financial_tax
        public CrudeFinancialTaxContract FetchByFinancialTaxId(System.Guid financialTaxId)
        {
            var dataAccessLayer = new CrudeFinancialTaxData();
            var contract        = new CrudeFinancialTaxContract();

            dataAccessLayer.FetchByFinancialTaxId(financialTaxId);
            DataToContract(dataAccessLayer, contract);

            return(contract);
        }
        // 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/fdcc33b4-08f1-43c3-ae28-95fbf029c3bd
        // parameters:
        //  CrudeFinancialTaxData: primary key of table CrudeFinancialTaxData
        public CrudeFinancialTaxModel FetchByFinancialTaxId(System.Guid financialTaxId)
        {
            var dataAccessLayer = new CrudeFinancialTaxData();
            var model           = new CrudeFinancialTaxModel();

            dataAccessLayer.FetchByFinancialTaxId(financialTaxId);
            DataToModel(dataAccessLayer, model);

            return(model);
        }