dcfcc0971d3700c77d8d61538e97140a5d2f1a37
[CSharpForFun/.git] / Mono / RemoteAgents / GTKLinux / View / View.cs
1 using System;
2 using System.Threading.Tasks;
3 using Example.RemoteAgents.GTKLinux.ViewModel;
4
5
6 namespace Example.RemoteAgents.GTKLinux.View
7 {
8   public class ViewImpl
9   {
10     private readonly ViewModelImpl _vm = new ViewModelImpl();
11
12     async public Task<string> GetCurrentDateAsync()
13     {
14       return await _vm.GetCurrentDateAsync();
15     }
16
17     async public Task SetWriteTextAsync(params object[] parameters)
18     {
19       await _vm.SetWriteTextAsync(parameters);
20     }
21   }
22 }
23