yavsc/web/Controllers/BackOfficeController.cs

21 lines
304 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Yavsc.Admin;
namespace Yavsc.Controllers
{
public class BackOfficeController : Controller
{
2014-10-08 10:47:40 +02:00
public ActionResult Estimate()
2014-07-16 20:35:03 +02:00
{
}
2014-10-08 10:47:40 +02:00
public ActionResult Index ()
2014-07-16 20:35:03 +02:00
{
}
}
}