Example #1
0
        public InstructorController()
        {
            var dbContext = new DemoDbContext();

            _bl = new InstructorBL(dbContext);
        }
 public InstructorController(InstructorBL bl)
 {
     _bl = bl;
 }