remove timer service

This commit is contained in:
chsakell
2016-10-04 13:24:33 +03:00
parent e6669deb25
commit fb6127d281
7 changed files with 0 additions and 131 deletions

View File

@@ -12,7 +12,6 @@ using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using LiveGameFeed.Core.Mappings;
using LiveGameFeed.Core.MvcTimer;
using Newtonsoft.Json.Serialization;
using RecurrentTasks;
using LiveGameFeed.Core;
@@ -41,10 +40,6 @@ namespace LiveGameFeed
services.AddSingleton<IMatchRepository, MatchRepository>();
services.AddSingleton<IFeedRepository, FeedRepository>();
// Timer service configuration
services.AddSingleton<ITimerService, TimerService>();
services.Configure<TimerServiceConfiguration>(Configuration.GetSection("TimeService"));
// Automapper Configuration
AutoMapperConfiguration.Configure();