public HomeController(IDocumentBO documentBO)
 {
     _documentBO = documentBO;
 }
        // Everything is GET because all saving is done on the fly with AJAX (no annoying issues trying to get data back into a useable format!)

        public DocumentsController(IDocumentBO docBO, IFileManagerBO fileBO)
        {
            _docBO  = docBO;
            _fileBO = fileBO;
        }