public static async Task <BeneficialUsesCV> Load(WaDEContext db, BeneficalUsesBuilderOptions opts)
        {
            var item = Create(opts);

            db.BeneficialUsesCV.Add(item);
            await db.SaveChangesAsync();

            return(item);
        }
 public static BeneficialUsesCV Create(BeneficalUsesBuilderOptions opts)
 {
     return(new Faker <BeneficialUsesCV>()
            .RuleFor(a => a.Name, f => GenerateName())
            .RuleFor(a => a.Term, f => f.Random.Word())
            .RuleFor(a => a.Definition, f => f.Random.Words(5))
            .RuleFor(a => a.State, f => f.Address.StateAbbr())
            .RuleFor(a => a.SourceVocabularyURI, f => f.Internet.Url()));
 }