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
881 B

/*
*Authorjxx
*Contact283591387@qq.com
*,
*PartialApp_ExpertServiceIApp_ExpertService
*/
using VOL.AppManager.IRepositories;
using VOL.AppManager.IServices;
using VOL.Core.BaseProvider;
using VOL.Core.Extensions.AutofacManager;
using VOL.Entity.DomainModels;
namespace VOL.AppManager.Services
{
public partial class App_ExpertService : ServiceBase<App_Expert, IApp_ExpertRepository>, IApp_ExpertService, IDependency
{
public App_ExpertService(IApp_ExpertRepository repository)
: base(repository)
{
Init(repository);
}
public static IApp_ExpertService Instance
{
get { return AutofacContainerModule.GetService<IApp_ExpertService>(); }
}
}
}