PageRenderTime 38ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/src/MM.Web/Controllers/ICustomerController.cs

#
C# | 10 lines | 8 code | 2 blank | 0 comment | 0 complexity | cc980a1138a48f9fd360e03e67358b3e MD5 | raw file
  1. using System.Web.Mvc;
  2. namespace MM.Web.Controllers
  3. {
  4. public interface ICustomerController
  5. {
  6. ActionResult Index();
  7. }
  8. }