public async Task CreateItemAsync(Item item) { await context.AddAsync(item); await context.SaveChangesAsync(); }
public async Task CreateClientCompanyAsync(ClientCompany company) { await context.AddAsync(company); await context.SaveChangesAsync(); }