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();
}
}
}