예제 #1
0
 public GuideController(IGuides<guides> repository)
 {
     _guideRepository = repository;
 }
 public CourseGuideController(IRepository<guides> repository, IGuides<guides> repo)
 {
     _courseGuideRepository = repository;
     _guideRepository = repo;
 }       
예제 #3
0
 public GuideController()
 {
     _guideRepository = new GuideRepository();
 }
 public CourseGuideController()
 {
     _courseGuideRepository = new CourseGuideRepository();
     _guideRepository = new GuideRepository();
 }