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.
15 lines
711 B
15 lines
711 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 外训申请_宝连通 (服务)
|
|
/// </summary>
|
|
public class Ghre_ExternalTrainApplyOrder_BoltoneServices : BaseServices<Ghre_ExternalTrainApplyOrder_Boltone, Ghre_ExternalTrainApplyOrder_BoltoneDto, InsertGhre_ExternalTrainApplyOrder_BoltoneInput, EditGhre_ExternalTrainApplyOrder_BoltoneInput>, IGhre_ExternalTrainApplyOrder_BoltoneServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_ExternalTrainApplyOrder_Boltone> _dal;
|
|
public Ghre_ExternalTrainApplyOrder_BoltoneServices(ICaching caching, IBaseRepository<Ghre_ExternalTrainApplyOrder_Boltone> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |