protected override List <PropertyInfo> GetFullList()
 {
     using (var context = new ElectronicsShopDatabase())
     {
         Type type = context.GetType();
         return(type.GetProperties().Where(x => x.PropertyType.FullName.StartsWith("Microsoft.EntityFrameworkCore.DbSet")).ToList());
     }
 }