...
This commit is contained in:
@@ -24,7 +24,7 @@ public class MyDialogService : IMyDialogService
|
||||
|
||||
public void Unsubscribe(Action action)
|
||||
{
|
||||
OnChange += action;
|
||||
OnChange -= action;
|
||||
}
|
||||
|
||||
public void Show(DialogContents dialogContents)
|
||||
|
||||
@@ -29,7 +29,7 @@ public class SearchService : ISearchService
|
||||
|
||||
public void Unsubscribe(Action action)
|
||||
{
|
||||
OnChange += action;
|
||||
OnChange -= action;
|
||||
}
|
||||
|
||||
public void Search(string entityId)
|
||||
|
||||
@@ -40,7 +40,7 @@ public class StorageService : IStorageService
|
||||
|
||||
public void Unsubscribe(Action action)
|
||||
{
|
||||
OnChange += action;
|
||||
OnChange -= action;
|
||||
}
|
||||
|
||||
public T GetValue<T>(string forKey)
|
||||
|
||||
@@ -13,7 +13,7 @@ public class ToastService : IToastService
|
||||
|
||||
public void Unsubscribe(Action action)
|
||||
{
|
||||
OnChange += action;
|
||||
OnChange -= action;
|
||||
}
|
||||
|
||||
public void AddToast(ToastModel toast)
|
||||
|
||||
Reference in New Issue
Block a user