示例#1
0
        public ActionResult About(string dataAbout, ClassInject classInject, Lazy <IInterface> method1,
                                  int?nulldata, CommonInterface <TTypeClass, WTypeClass> commonInterface1,
                                  CommonInterface1 commonInterface2)
        {
            ViewBag.Message = "Your application description page.....";
            if (string.IsNullOrWhiteSpace(dataAbout))
            {
                dataAbout = "Your application description page.....";
            }

            method.Value.About(dataAbout, classInject);
            method1.Value.About(dataAbout, new ClassInject(-1));
            commonInterface.Run(new WTypeClass());
            commonInterface1.Run(new TTypeClass());
            commonInterface2.Run("data");
            return(View(dataAbout));
        }
示例#2
0
 public void About(string dataAbout, ClassInject classInject)
 {
     //throw new NotImplementedException();
 }
示例#3
0
 public void About(string dataAbout, ClassInject classInject)
 {
     Console.WriteLine(dataAbout);
 }