Ejemplo n.º 1
0
        public void Run()
        {
            Console.WriteLine($"开始运行{nameof(FactoryTest)}");

            var builder = new ObjectContainerBuilder();

            builder.Register <StudentBll, IStudentBll>();
            builder.Register <StudentDal1, IStudentDal>();

            ICustomContainer container = builder.Build();
            // 使用 StudentDal1
            //IStudentBll studentBll = new StudentBll(new StudentDal1());
            IStudentBll studentBll = container.Resolve <IStudentBll>();
            var         students   = studentBll.GetStudents();

            foreach (var student in students)
            {
                Console.WriteLine(student);
            }
            // 使用 StudentDal2
            studentBll = new StudentBll(new StudentDal2());
            students   = studentBll.GetStudents();
            foreach (var student in students)
            {
                Console.WriteLine(student);
            }
            Console.WriteLine($"结束运行{nameof(FactoryTest)}");
        }
Ejemplo n.º 2
0
        // As for Autofac, I think we just can use constructor injection not setter injection.
        // And I think Attribute injection is so complex.
        public static void Run()
        {
            Console.WriteLine($"开始运行{nameof(Demo3)}");
            // 使用 StudentDal1
            ContainerBuilder cb = new ContainerBuilder();

            cb.RegisterType <StudentBll>().As <IStudentBll>();
            cb.RegisterType <StudentDal1>().As <IStudentDal>();
            IContainer container = cb.Build();

            IStudentBll           studentBll = container.Resolve <IStudentBll>();
            IStudentDal           studentDal = container.Resolve <IStudentDal>();
            IEnumerable <Student> students   = studentBll.GetStudents();

            foreach (Student student in students)
            {
                Console.WriteLine(student);
            }
            // 使用 StudentDal2
            cb = new ContainerBuilder();
            cb.RegisterType <StudentBll>().As <IStudentBll>();
            cb.RegisterType <StudentDal2>().As <IStudentDal>();
            container = cb.Build();

            studentBll = container.Resolve <IStudentBll>();
            students   = studentBll.GetStudents();
            foreach (Student student in students)
            {
                Console.WriteLine(student);
            }
            Console.WriteLine($"结束运行{nameof(Demo3)}");
        }
Ejemplo n.º 3
0
 public RegisterController()
 {
     _studentBll = new StudentBll();
     _teacherBll = new TeacherBll();
 }
Ejemplo n.º 4
0
 public ClassroomController()
 {
     _studentBll = new StudentBll();
 }
 public ProfileController()
 {
     _studentBll = new StudentBll();
     _teacherBll = new TeacherBll();
 }
Ejemplo n.º 6
0
 public HomeController()
 {
     _studentBll = new StudentBll();
     _teacherBll = new TeacherBll();
 }
Ejemplo n.º 7
0
 public UploadImage(IStudentBll _studentBll)
 {
     studentBll = _studentBll;
 }
 public AdminPanelController()
 {
     _teacherBll = new TeacherBll();
     _studentBll = new StudentBll();
 }
Ejemplo n.º 9
0
 public HomeController(IStudentBll _studentBll, IAdminBll _adminBll, IMailBll _mailBll)
 {
     studentBll = _studentBll;
     adminBll   = _adminBll;
     mailBll    = _mailBll;
 }
Ejemplo n.º 10
0
 public LoginController()
 {
     _studentBll = new StudentBll();
     _teacherBll = new TeacherBll();
 }