List <string> InterfaceInformations.displaySearchResults(string description, string tag)
        {
            InformationsService informationsService = new InformationsService();

            return(informationsService.displaySearchResults(description, tag));
        }
 public InformationController(InformationsService informationsService, ILogger <InformationController> logger)
 {
     this._informationsService = informationsService;
     this._logger = logger;
 }
        Informations InterfaceInformations.saveInformations(string path, string tag, string value)
        {
            InformationsService informationsService = new InformationsService();

            return(informationsService.saveInformations(path, tag, value));
        }