public async void Save(Category category)
 {
     await _dataAccessor.SaveDataAsync(new List<Category>{ category });
 }
 public CategoryControl(Category category)
 {
     this.TextBoxName.Text = category.Name;
 }