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

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