21 lines
464 B
C#
21 lines
464 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using UTB.Eshop.Web.Models.Entity;
|
|
|
|
namespace UTB.Eshop.Web.Models.Database
|
|
{
|
|
public static class DatabaseFake
|
|
{
|
|
public static List<CarouselItem> CarouselItems { get; set; }
|
|
|
|
static DatabaseFake()
|
|
{
|
|
DatabaseInit dbInit = new DatabaseInit();
|
|
|
|
CarouselItems = dbInit.GenerateCarouselItems();
|
|
}
|
|
}
|
|
}
|