public async Task <IEnumerable <long> > GetPrimeNumbers(long number)
 {
     return(await PrimeCalculator.FindPrimesAsync(number));
 }