public ProductsBLL(DataContext context, ErrorLogBLL errorLogBLL, ActionLogBLL actionLogBLL, CategoryBLL categoryBLL)
 {
     _context      = context;
     _errorLogBLL  = errorLogBLL;
     _actionLogBLL = actionLogBLL;
     _categoryBLL  = categoryBLL;
 }
 public CategoryBLL(DataContext context, ErrorLogBLL errorLogBLL)
 {
     _context     = context;
     _errorLogBLL = errorLogBLL;
 }
 public ErrorLogsController(ErrorLogBLL errorLogBLL)
 {
     _errorLogBLL = errorLogBLL;
 }