|
|
|
@ -8,9 +8,6 @@ public class Manager : INotifyPropertyChanged
|
|
|
|
|
{
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
|
|
|
|
|
|
|
|
protected void OnPropertyChanged([CallerMemberName] string propertyName = null)
|
|
|
|
|
=> PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
|
|
|
|
|
|
|
|
public readonly static int MAX_NAME_LENGTH = 75;
|
|
|
|
|
|
|
|
|
|
public readonly static int MAX_DESCRIPTION_LENGTH = 500;
|
|
|
|
@ -291,4 +288,7 @@ public class Manager : INotifyPropertyChanged
|
|
|
|
|
return DataManager.GetAlbumById(id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnPropertyChanged([CallerMemberName] string propertyName = null)
|
|
|
|
|
=> PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|