public RootConfigurations DefaultRootConfigurationsForTender()
        {
            OldFlow oldFlow = new OldFlow()
            {
                isApplied = true,
                EndDate   = "2020-04-24"
            };
            NewAwarding newAwarding = new NewAwarding()
            {
                ReleaseDate = "2020-11-24"
            };

            UnitAgencyCodeConfiguration unitAgencyCodeConfiguration = new UnitAgencyCodeConfiguration()
            {
                UnitAgencyCode = "022001000000"
            };

            RootConfigurations rootConfigurations = new RootConfigurations()
            {
                OldFlow     = oldFlow,
                NewAwarding = newAwarding,
                UnitAgencyCodeConfiguration = unitAgencyCodeConfiguration
            };

            return(rootConfigurations);
        }
        public RootConfigurations DefaultRootConfigurationsFor()
        {
            OldFlow oldFlow = new OldFlow()
            {
                isApplied = true,
                EndDate   = "2020-04-24"
            };
            RootConfigurations rootConfigurations = new RootConfigurations()
            {
                OldFlow = oldFlow
            };

            return(rootConfigurations);
        }