private async Task LoadTagDataForEdit(int id)
        {
            TagDataService tagDataService = new TagDataService(new EntityFramework.TimetableManagerDbContext());

            tag = await tagDataService.GetTagById(id);

            textBoxtag.Text = tag.TagName;
            isEditState     = true;
        }