9 Mayıs 2015 Cumartesi

View'e Controller inherit etmek

@inherits MVCWithAutofac.Web.BasePages.CustomBasePage

using MVCWithAutofac.Core.Interfaces;
using System.Web.Mvc;

namespace MVCWithAutofac.Web.BasePages
{
    public class CustomBasePage : WebViewPage
    {
        public ITeamRepository teamRepo { get; set; }
        public IRepository repo { get; set; }

        public override void Execute() { }
    }
}

Autofac kullanarak

Hiç yorum yok:

Yorum Gönder

.net 6 mapget kullanımı

 app.UseEndpoints(endpoints => {     endpoints.MapGet("/", async context =>     {         var response = JsonConvert.Seriali...