pwt-final-countdown/Models/Dbfake/Dbfake.cs
surtur d63715392e
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2020-12-17 14:53:05 +01:00

16 lines
337 B
C#

using System.Collections.Generic;
namespace pwt_final_countdown.Models.Dbfake
{
public static class Dbfake
{
/* singe db table simulation*/
public static IList<Processor> Processors { get; set; }
static Dbfake()
{
Processors = ProcessorHelper.GenerateProcessors();
}
}
}