| 123456789101112131415161718 |
- using CallCenterApi.Interface.Controllers.Base;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace CallCenterApi.Interface.Controllers.Out
- {
- public class OutApiController : BaseController
- {
- // GET: OutApi
- public ActionResult Index()
- {
- return View();
- }
- }
- }
|