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.

30 lines
840 B

/*
*Authorjxx
*Contact283591387@qq.com
*,
*PartialData_ProduceServiceIData_ProduceService
*/
using VOL.Data.IRepositories;
using VOL.Data.IServices;
using VOL.Core.BaseProvider;
using VOL.Core.Extensions.AutofacManager;
using VOL.Entity.DomainModels;
namespace VOL.Data.Services
{
public partial class Data_ProduceService : ServiceBase<Data_Produce, IData_ProduceRepository>
, IData_ProduceService, IDependency
{
public Data_ProduceService(IData_ProduceRepository repository)
: base(repository)
{
Init(repository);
}
public static IData_ProduceService Instance
{
get { return AutofacContainerModule.GetService<IData_ProduceService>(); } }
}
}