public IEnumerable <int> GetDivisors(int value)
 {
     return(_factors.GetDivisors(value).ToList());
 }