public void Delete(int id, string notes = "", bool hardDelete = false)
        {
            notes = notes ?? string.Empty;

            if (hardDelete)
            {
                queries.MoveSeriesToTrash(id, notes);
            }
            else
            {
                queries.DeleteSeries(id, notes);
            }
        }