16 lines
323 B
C#
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();
|
|
}
|
|
}
|
|
}
|