using System;
|
using System.Collections.Generic;
|
using System.Linq.Expressions;
|
using System.Threading.Tasks;
|
using RiskControl.NewService.Extension;
|
|
namespace RiskControl.NewService.Service
|
{
|
public class IndustryBaseService<T> : BaseService<T> where T : class, new()
|
{
|
public IndustryBaseService():base(RRIndustryDb)
|
{
|
|
}
|
|
}
|
}
|