实现了添加设备的功能,并写了Object对象的扩展CopyTo方法,实现了数据表的创建。
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
using CommunityToolkit.Mvvm.Input;
|
||||
using System.Windows;
|
||||
using CommunityToolkit.Mvvm.Input;
|
||||
using PMSWPF.Data.Entities;
|
||||
using PMSWPF.Data.Repositories;
|
||||
using PMSWPF.Excptions;
|
||||
using PMSWPF.Extensions;
|
||||
using PMSWPF.Helper;
|
||||
using PMSWPF.Models;
|
||||
using PMSWPF.Services;
|
||||
using PMSWPF.ViewModels.Dialogs;
|
||||
@@ -9,17 +15,36 @@ namespace PMSWPF.ViewModels;
|
||||
public partial class DevicesViewModel : ViewModelBase
|
||||
{
|
||||
private readonly IDeviceDialogService _deviceDialogService;
|
||||
private readonly DevicesRepositories _devicesRepositories;
|
||||
|
||||
public DevicesViewModel(IDeviceDialogService deviceDialogService)
|
||||
public DevicesViewModel(IDeviceDialogService deviceDialogService,DevicesRepositories devicesRepositories)
|
||||
{
|
||||
_deviceDialogService = deviceDialogService;
|
||||
_devicesRepositories = devicesRepositories;
|
||||
}
|
||||
|
||||
|
||||
[RelayCommand]
|
||||
public async void AddDevice()
|
||||
{
|
||||
Device device = new Device();
|
||||
await _deviceDialogService.ShowAddDeviceDialog(device);
|
||||
try
|
||||
{
|
||||
Device device = new Device();
|
||||
await _deviceDialogService.ShowAddDeviceDialog(device);
|
||||
DbDevice dbDevice = new DbDevice();
|
||||
device.CopyTo<DbDevice>(dbDevice);
|
||||
await _devicesRepositories.Add(dbDevice);
|
||||
}
|
||||
catch (DbExistException e)
|
||||
{
|
||||
Console.WriteLine(e);
|
||||
MessageBox.Show(e.Message);
|
||||
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine(e);
|
||||
MessageBox.Show(e.Message);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,28 @@
|
||||
using CommunityToolkit.Mvvm.ComponentModel;
|
||||
using CommunityToolkit.Mvvm.Input;
|
||||
using PMSWPF.Extensions;
|
||||
using PMSWPF.Models;
|
||||
|
||||
namespace PMSWPF.ViewModels.Dialogs;
|
||||
|
||||
public partial class DeviceDialogViewModel:ObservableObject
|
||||
{
|
||||
private readonly Device _saveDevice;
|
||||
|
||||
[ObservableProperty]
|
||||
private string title="添加设备";
|
||||
public DeviceDialogViewModel()
|
||||
[ObservableProperty]
|
||||
private Device device;
|
||||
public DeviceDialogViewModel(Device saveDevice)
|
||||
{
|
||||
|
||||
_saveDevice = saveDevice;
|
||||
this.device = new Device();
|
||||
}
|
||||
|
||||
|
||||
[RelayCommand]
|
||||
public void AddDevice()
|
||||
{
|
||||
this.device.CopyTo<Device>(_saveDevice);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user