public SystemMenuController(ISystemMenuService systemMenuService, IRoleMenuService roleMenuService, ISystemRoleService systemRoleService, IUnitOfWork unitOfWork, ILogger <StudentTestController> logger)
 {
     _systemMenuService = systemMenuService;
     _roleMenuService   = roleMenuService;
     _systemRoleService = systemRoleService;
     _unitOfWork        = unitOfWork;
     _logger            = logger;
 }
 public SystemStaffController(ISystemStaffService systemStaffService, ISystemRoleService systemRoleService, ISystemSectionService systemSectionService
                              , ISystemStaffRoleService systemStaffRoleService)
 {
     this._systemStaffService     = systemStaffService;
     this._systemRoleService      = systemRoleService;
     this._systemSectionService   = systemSectionService;
     this._systemStaffRoleService = systemStaffRoleService;
 }