public CategoryController(ICategoryBAL categoryBAL)
 {
     _categoryBAL = categoryBAL;
 }
Ejemplo n.º 2
0
 public CategoryController(ICategoryBAL Category)
 {
     _Category = Category;
 }
 public VideoBAL(IVideoRepository videoRepository, ICategoryBAL categoryBAL)
 {
     _videoRepository = videoRepository;
     _categoryBAL     = categoryBAL;
 }