21 lines
No EOL
586 B
C#
21 lines
No EOL
586 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using System.Configuration;
|
|
|
|
namespace AYA.SlnSinort.Controllers
|
|
{
|
|
public class BaseController : Controller
|
|
{
|
|
public void InitControllers()
|
|
{
|
|
var SinortWCF = ConfigurationManager.AppSettings["SinortWCF"];
|
|
var SinortCatalogosWCF = ConfigurationManager.AppSettings["SinortCatalogosWCF"];
|
|
|
|
ViewBag.SinortWCF = SinortWCF;
|
|
ViewBag.SinortCatalogosWCF = SinortCatalogosWCF;
|
|
}
|
|
}
|
|
} |