You cannot 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
548 B
C#
24 lines
548 B
C#
using Admin.Core.IService;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
/**
|
|
* 补码打印
|
|
* */
|
|
namespace Aucma.Core.PrintTo.ViewModels
|
|
{
|
|
public class SupplementViewModel : ObservableObject
|
|
{
|
|
public SupplementViewModel()
|
|
{
|
|
|
|
_printSuppleMentBarCodeServices = App.ServiceProvider.GetService<IPrintSuppleMentBarCodeServices>();
|
|
}
|
|
|
|
}
|
|
}
|