public async Task CreateLink(string title, string url, string describe) { using (ILinkService linkService = new LinkService()) { await linkService.CreateAsync(new Link() { Title = title, Url = url, Describe = describe }); } }