Subversion Repositories SmartDukaan

Rev

Rev 35297 | Rev 35323 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35297 Rev 35301
Line 460... Line 460...
460
                ", trialEnd=" + trialEnd +
460
                ", trialEnd=" + trialEnd +
461
                ", minimumInvestmentOld=" + minimumInvestmentOld +
461
                ", minimumInvestmentOld=" + minimumInvestmentOld +
462
                '}';
462
                '}';
463
    }
463
    }
464
 
464
 
465
    public float getMinInvestmentOld() {
465
    public boolean isExpired() {
466
        return minimumInvestmentOld;
466
        return LocalDate.now().isAfter(trialEnd);
467
    }
467
    }
468
}
468
}
469
469