mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-23 01:37:59 +00:00
added timer service to home controller
This commit is contained in:
15
Core/Mappings/AutoMapperConfiguration.cs
Normal file
15
Core/Mappings/AutoMapperConfiguration.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using AutoMapper;
|
||||
|
||||
namespace LiveGameFeed.Core.Mappings
|
||||
{
|
||||
public class AutoMapperConfiguration
|
||||
{
|
||||
public static void Configure()
|
||||
{
|
||||
Mapper.Initialize(x =>
|
||||
{
|
||||
x.AddProfile<DomainToViewModelMappingProfile>();
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user