ln.skyscanner/services/CrawlService.cs

22 lines
505 B
C#

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)
{
EntityService entityService = Dependency<EntityService>();
Ready();
}
}
}