예제 #1
0
        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);
        }