public AccountController(IAccountHandler accountHandler,
                          IPayeLevySubmissionsHandler payeLevySubmissionsHandler,
                          ILog log,
                          IPayeLevyMapper payeLevyDeclarationMapper)
 {
     _accountHandler             = accountHandler;
     _payeLevySubmissionsHandler = payeLevySubmissionsHandler;
     _log            = log;
     _payeLevyMapper = payeLevyDeclarationMapper;
 }
 public AccountController(IAccountHandler accountHandler,
                          IPayeLevySubmissionsHandler payeLevySubmissionsHandler,
                          ILog log,
                          IPayeLevyMapper payeLevyDeclarationMapper,
                          HttpContextBase httpContext)
 {
     _accountHandler             = accountHandler;
     _payeLevySubmissionsHandler = payeLevySubmissionsHandler;
     _log            = log;
     _payeLevyMapper = payeLevyDeclarationMapper;
     _httpContext    = httpContext;
 }