public List <Fruit> GetList()
 {
     using (context = new FruitDBContext())
     {
         return(context.Fruits.ToList());
     }
 }