You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
856 B

/*
*Authorjxx
*Contact283591387@qq.com
*,
*PartialSellOrderServiceISellOrderService
*/
using VOL.Order.IRepositories;
using VOL.Order.IServices;
using VOL.Core.BaseProvider;
using VOL.Core.Extensions.AutofacManager;
using VOL.Entity.DomainModels;
namespace VOL.Order.Services
{
public partial class SellOrderService : ServiceBase<SellOrder, ISellOrderRepository>, ISellOrderService, IDependency
{
public SellOrderService(ISellOrderRepository repository)
: base(repository)
{
Init(repository);
}
public static ISellOrderService Instance
{
get { return AutofacContainerModule.GetService<ISellOrderService>(); }
}
}
}