public async Task UpdateAsync(User user, params Expression<Func<User, object>>[] fields) { await _userCollection.UpdateAsync(user, fields); }
public async Task CreateAsync(User user) { await _userCollection.InsertAsync(user); }