// fetch by Primary key into current object
        // links:
        //  docLink: http://sql2x.org/documentationLink/bbab4791-c9e7-49bf-90d5-fca19b1fedaa
        // parameters:
        //  productGatherSourceId: primary key of table product_gather_source
        public CrudeProductGatherSourceContract FetchByProductGatherSourceId(System.Guid productGatherSourceId)
        {
            var dataAccessLayer = new CrudeProductGatherSourceData();
            var contract        = new CrudeProductGatherSourceContract();

            dataAccessLayer.FetchByProductGatherSourceId(productGatherSourceId);
            DataToContract(dataAccessLayer, contract);

            return(contract);
        }