mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
603 B
24 lines
603 B
using System;
|
|
using System.Windows;
|
|
|
|
namespace MyCompanyName.MyProjectName
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for MainWindow.xaml
|
|
/// </summary>
|
|
public partial class MainWindow : Window
|
|
{
|
|
private readonly HelloWorldService _helloWorldService;
|
|
|
|
public MainWindow(HelloWorldService helloWorldService)
|
|
{
|
|
_helloWorldService = helloWorldService;
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void OnContentRendered(EventArgs e)
|
|
{
|
|
HelloLabel.Content =_helloWorldService.SayHello();
|
|
}
|
|
}
|
|
}
|
|
|