private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            using (var context = new KiskereskedoEntities1())

            {
                context.Configuration.ProxyCreationEnabled = false;
                aruKeszletDataGrid.ItemsSource = context.RaktarLeker().ToList();

            }
        }