18 lines
579 B
C#
18 lines
579 B
C#
|
|
using YY.Admin.Core.Services;
|
||
|
|
using YY.Admin.Services.Service;
|
||
|
|
|
||
|
|
namespace YY.Admin.ViewModels.RawMaterialEntry;
|
||
|
|
|
||
|
|
public class RawMaterialEntryOperationViewModel : RawMaterialEntryEditDialogViewModel
|
||
|
|
{
|
||
|
|
public RawMaterialEntryOperationViewModel(
|
||
|
|
IRawMaterialEntryService entryService,
|
||
|
|
IJeecgDictSyncService dictSyncService,
|
||
|
|
IMixerMaterialService mixerMaterialService,
|
||
|
|
IContainerExtension container,
|
||
|
|
IRegionManager regionManager)
|
||
|
|
: base(entryService, dictSyncService, mixerMaterialService, container, regionManager)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|