public async Task <bool> CreateAsync(CustomerEntity customer)
        {
            _context.Add(customer);
            await _context.SaveChangesAsync();

            return(true);
        }
예제 #2
0
        public async Task <bool> CreateAsync(DepositEntity deposit)
        {
            if (!IsIDExistsAsync(deposit.CustomerCID).Result)
            {
                _context.Add(deposit);
                await _context.SaveChangesAsync();

                return(true);
            }
            return(false);
        }