20 lines
413 B
C#
20 lines
413 B
C#
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WGneu.Models;
|
|
|
|
namespace WGneu.Documents {
|
|
public class TestTemplateModel {
|
|
|
|
public IQueryable<Country> Countries { get; set; }
|
|
|
|
public TestTemplateModel(WgContext c) {
|
|
Countries = c.Countries;
|
|
}
|
|
|
|
}
|
|
}
|