Нет описания

OutApiController.cs 381B

123456789101112131415161718
  1. using CallCenterApi.Interface.Controllers.Base;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.Mvc;
  7. namespace CallCenterApi.Interface.Controllers.Out
  8. {
  9. public class OutApiController : BaseController
  10. {
  11. // GET: OutApi
  12. public ActionResult Index()
  13. {
  14. return View();
  15. }
  16. }
  17. }