This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/Models/Dbfake/Dbfake.cs

16 lines
323 B
C#

using System.Collections.Generic;
namespace pwt_0x01_ng.Models.Dbfake
{
public static class Dbfake
{
/* singe db table simulation*/
public static IList<Carousel> Carousels { get; set; }
static Dbfake()
{
Carousels = CarouselHelper.GenerateCarousel();
}
}
}