12 lines
205 B
C#
12 lines
205 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace KanSan.Base.Interfaces
|
|
{
|
|
public interface IDialogWindowService
|
|
{
|
|
void showWindow(object viewModel);
|
|
}
|
|
}
|