Exemplo n.º 1
0
 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
         });
     }
 }