public CategoryController(ICategoryBAL categoryBAL)
 {
     _categoryBAL = categoryBAL;
 }
예제 #2
0
 public CategoryController(ICategoryBAL Category)
 {
     _Category = Category;
 }
 public VideoBAL(IVideoRepository videoRepository, ICategoryBAL categoryBAL)
 {
     _videoRepository = videoRepository;
     _categoryBAL     = categoryBAL;
 }