ln.skyscanner/services/CrawlService.cs

22 lines
505 B
C#
Raw Normal View History

2019-08-03 12:57:32 +02:00
using System;
using ln.application;
using ln.application.service;
namespace ln.skyscanner.services
{
public class CrawlService : ApplicationServiceBase
{
public CrawlService()
:base("Crawler Service")
{
DependOnService<EntityService>();
}
public override void ServiceMain(IApplicationInterface applicationInterface)
{
2019-08-06 00:26:53 +02:00
EntityService entityService = Dependency<EntityService>();
Ready();
2019-08-03 12:57:32 +02:00
}
}
}