Fixed another copy paste bug, changed speaker icon to button
This commit is contained in:
17
Filtration.Common/Services/MessageBoxService.cs
Normal file
17
Filtration.Common/Services/MessageBoxService.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Windows;
|
||||
|
||||
namespace Filtration.Common.Services
|
||||
{
|
||||
public interface IMessageBoxService
|
||||
{
|
||||
MessageBoxResult Show(string caption, string message, MessageBoxButton buttons, MessageBoxImage image);
|
||||
}
|
||||
|
||||
public class MessageBoxService : IMessageBoxService
|
||||
{
|
||||
public MessageBoxResult Show(string caption, string message, MessageBoxButton buttons, MessageBoxImage image)
|
||||
{
|
||||
return MessageBox.Show(message, caption, buttons, image);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user