Esempio n. 1
0
        public VaultKeep GetOne(int id)
        {
            VaultKeep foundVaultKeep = _repo.GetOne(id);

            if (foundVaultKeep == null)
            {
                throw new Exception("Invalid Id");
            }
            return(foundVaultKeep);
        }