public Dictionary <string, IcuModel> GetIcuConfiguration(string dbPath)
        {
            var icuDbObj = new IcuDbOps(dbPath);

            return(icuDbObj.GetAllIcuFromDb());
        }
        public object AddNewIcuConfiguration(IcuModel newIcu, string dbPath)
        {
            var icuDbObj = new IcuDbOps(dbPath);

            return(icuDbObj.AddIcuToDb(newIcu));
        }
        public object DeleteIcu(string icuId, string dbPath)
        {
            var icuDbObj = new IcuDbOps(dbPath);

            return(icuDbObj.DeleteIcuFromDb(icuId));
        }