public HomeController()
 {
     _drugAmendmentConnectionService = new DrugAmendmentConnectionService();
 }
 public HomeController(IAuthorizationProvider authorisationProvider,
                       IDrugAmendmentConnectionService drugAmendmentConnectionService)
 {
     AuthorisationProvider           = authorisationProvider;
     _drugAmendmentConnectionService = drugAmendmentConnectionService;
 }