Advertisement
Guest User

Untitled

a guest
Jun 16th, 2017
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. namespace Omnisoft.Api.Connector.Services
  2. {
  3.     /// <summary>
  4.     /// Connector for articles
  5.     /// </summary>
  6.     /// <remarks>
  7.     /// Connects to /v1/SimpleArticle
  8.     /// </remarks>
  9.     public class SimpleArticleService : baseApiCrudService<Domain.DTO.Article>, IApiCrudService<Domain.DTO.Article>
  10.     {
  11.         public SimpleArticleService(string apiKey, string apiDomainUrl) : base(apiKey, apiDomainUrl)
  12.         {
  13.             base.SetPath(Urls.SimpleArticle);
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement