public async Task <bool> CreateAsync(CustomerEntity customer) { _context.Add(customer); await _context.SaveChangesAsync(); return(true); }
public async Task <bool> CreateAsync(DepositEntity deposit) { if (!IsIDExistsAsync(deposit.CustomerCID).Result) { _context.Add(deposit); await _context.SaveChangesAsync(); return(true); } return(false); }