Exemplo n.º 1
0
 public BaseTestController()
 {
     context = new TimeTableContextDummy();
 }
 public GroupsController(ITimeTableContextTestable context)
     : base(context)
 {
 }
 public ClassRoomsController(ITimeTableContextTestable context)
     : base(context)
 {
 }
Exemplo n.º 4
0
 public HomeController(ITimeTableContextTestable context)
     : base(context)
 {
 }
 public LecturesController(ITimeTableContextTestable context)
     : base(context)
 {
 }
Exemplo n.º 6
0
 public BaseController() : base()
 {
     db = new TimeTableContext();
 }
Exemplo n.º 7
0
 public BaseController(ITimeTableContextTestable context) : base()
 {
     db = context;
 }