This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Quartz.NET: https://www.quartz-scheduler.net/ | |
Serilog: https://serilog.net/ | |
Automapper: https://automapper.org/ | |
Polly: https://www.pollydocs.org/ | |
FakeItEasy: https://fakeiteasy.github.io/ | |
xUnit: https://xunit.net/ | |
FluentValidation: https://docs.fluentvalidation.net/en/latest/ | |
FluentAssertions*: https://fluentassertions.com/ | |
Autofac: https://autofac.org/ | |
Noda Time: https://nodatime.org/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace RacingCalendar | |
{ | |
public class Driver | |
{ | |
public Driver(string name) | |
{ | |
Name = name; | |
} | |
public string Name { get; set; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="bootstrap/css/bootstrap.css"></require> | |
<require from="./header"></require> | |
<require from="./navigation"></require> | |
<div style="margin-top: 60px;"> | |
<navigation></navigation> | |
<div id="master" style="margin-left:250px;padding-left:10px;border-left: 1px solid #000000;"> | |
<div class="alert alert-success" role="alert"><b>Well done!</b> You successfully read this important alert message.</div> | |
<header></header> | |
<router-view></router-view> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<configSections> | |
<section name="akka" type="Akka.Configuration.Hocon.AkkaConfigurationSection, Akka" /> | |
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> | |
</configSections> | |
<log4net> | |
<root> | |
<level value="DEBUG" /> | |
<appender-ref ref="Prototype"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using Akka.Actor; | |
using Akka.DI.Core; | |
using Akka.Routing; | |
using Prototype.Common.Messages; | |
using Prototype.Messages; | |
using Prototype.Shared.Logger; |