using System.Threading.Tasks; namespace Microsoft.AspNet.Mvc { public interface IViewEngine { Task FindView(RequestContext requestContext, string viewName); } }