public BankAccount Get(int id) { var entity = BankAccountRepository.ById(id); entity.EnsureNotNull("Account"); return(entity); }