public async Task <bool> UpdateAsync(DepositEntity deposit) { _context.Update(deposit); await _context.SaveChangesAsync(); return(true); }
public async Task <bool> UpdateAsync(CustomerEntity customer) { _context.Update(customer); await _context.SaveChangesAsync(); return(true); }