public async Task <List <MLFSReportingPeriod> > GetCurrentPeriods()
        {
            MLFSReportingPeriod period = await _periodData.GetCurrent();

            List <MLFSReportingPeriod> currentPeriods = await _periodData.GetLast12Months(period);

            return(currentPeriods);
        }