public int AddShortenedURLToLast(string host, int port) { URLModel tmp; tmp = UrlRepository.GetAll().LastOrDefault(); UrlRepository.Update(tmp); tmp.ShortURL = LinkShortner.GetShortLink(tmp.Id, host, port); return(tmp.Id); }