using Microsoft.AspNet.Identity.EntityFramework;
|
|
using Sevomin.Models;
|
|
using Sevomin.Models.Helpers;
|
|
using System.Threading.Tasks;
|
|
using System.Web.Mvc;
|
|
|
|
namespace Sevomin.WebFrontend.Controllers
|
|
{
|
|
public class HelpController : BaseController
|
|
{
|
|
public ActionResult ExportScript()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult ExportRss()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|