public static Task CleanupAsync(F1Context context)
        {
            RemoveAllEntities(context);

            return(context.SaveChangesAsync());
        }
        public static Task CleanupAsync(F1Context context)
        {
            RemoveAllEntities(context);

            return context.SaveChangesAsync();
        }
        public static Task SeedAsync(F1Context context)
        {
            AddEntities(context);

            return(context.SaveChangesAsync());
        }
        public static Task SeedAsync(F1Context context)
        {
            AddEntities(context);

            return context.SaveChangesAsync();
        }