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.
DSWMS/Vue.Net/VOL.WMS/Services/WMSINPLAN/OP_WMS_IN_PLANService.cs

28 lines
900 B
C#

2 years ago
/*
*Authorjxx
*Contact283591387@qq.com
*,
*PartialOP_WMS_IN_PLANServiceIOP_WMS_IN_PLANService
*/
using VOL.WMS.IRepositories;
using VOL.WMS.IServices;
using VOL.Core.BaseProvider;
using VOL.Core.Extensions.AutofacManager;
using VOL.Entity.DomainModels;
namespace VOL.WMS.Services
{
public partial class OP_WMS_IN_PLANService : ServiceBase<OP_WMS_IN_PLAN, IOP_WMS_IN_PLANRepository>, IOP_WMS_IN_PLANService, IDependency
{
public OP_WMS_IN_PLANService(IOP_WMS_IN_PLANRepository repository)
: base(repository)
{
Init(repository);
}
public static IOP_WMS_IN_PLANService Instance
{
get { return AutofacContainerModule.GetService<IOP_WMS_IN_PLANService>(); }
}
}
}