public async void Create(User user)
        {
            try
            {
                var createdUser = await _dbContext.Users.AddAsync(user);

                await _dbContext.SaveChangesAsync();
            }
            catch (Exception e)
            {
                throw new Exception($"Houve um problema ao fazer esta operação.\n-> {e.Message}");
            }
        }
Beispiel #2
0
        public async void Create(Debt debt)
        {
            try
            {
                var createdDebt = await _dbContext.Debts.AddAsync(debt);

                await _dbContext.SaveChangesAsync();
            }
            catch (Exception e)
            {
                throw new Exception($"Houve um problema ao fazer esta operação.\n-> {e.Message}");
            }
        }