Esempio n. 1
0
 public CheckingAccount GetById(long id)
 {
     if (id < 1)
     {
         throw new NotFoundException();
     }
     return(_checkingAccountRepository.GetById(id) ?? throw new NotFoundException());
 }