public IActionResult Deposit(int id, int amount, string accountType) { var AmountDeposited = _customerAccountRepo.Deposit(id, amount, accountType).FirstOrDefault(); return(Ok(AmountDeposited)); }