TestService.cs 983 B

1234567891011121314151617181920212223242526
  1. using MediaBrowser.Controller.Configuration;
  2. using MediaBrowser.Controller.Net;
  3. using Microsoft.Extensions.Logging;
  4. namespace MediaBrowser.Api
  5. {
  6. /// <summary>
  7. /// Service for testing path value.
  8. /// </summary>
  9. public class TestService : BaseApiService
  10. {
  11. /// <summary>
  12. /// Test service.
  13. /// </summary>
  14. /// <param name="logger">Instance of the <see cref="ILogger{TestService}"/> interface.</param>
  15. /// <param name="serverConfigurationManager">Instance of the <see cref="IServerConfigurationManager"/> interface.</param>
  16. /// <param name="httpResultFactory">Instance of the <see cref="IHttpResultFactory"/> interface.</param>
  17. public TestService(
  18. ILogger<TestService> logger,
  19. IServerConfigurationManager serverConfigurationManager,
  20. IHttpResultFactory httpResultFactory)
  21. : base(logger, serverConfigurationManager, httpResultFactory)
  22. {
  23. }
  24. }
  25. }