25 lines
530 B
C#
25 lines
530 B
C#
using eCIAv2.WindowsApp.Services;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace eCIAv2.WindowsApp.ViewModels
|
|
{
|
|
public class MainFromViewModel
|
|
{
|
|
private readonly ConfigService _configService;
|
|
|
|
public MainFromViewModel(ConfigService configService)
|
|
{
|
|
_configService = configService;
|
|
}
|
|
|
|
public string LoadConfig()
|
|
{
|
|
return _configService.LoadConfig();
|
|
}
|
|
}
|
|
}
|