22 lines
442 B
C#
22 lines
442 B
C#
using OrpaonEMS.App.Services;
|
|
using OrpaonEMS.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrpaonEMS.App.ViewModels
|
|
{
|
|
public class ACViewModel : NavigationViewModel
|
|
{
|
|
public ACViewModel(ACService aCService)
|
|
{
|
|
|
|
liquidCoolRtData = aCService;
|
|
}
|
|
|
|
public ACService liquidCoolRtData { get; set; }
|
|
}
|
|
}
|