You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
442 B
C#
18 lines
442 B
C#
using Admin.Core.IRepository;
|
|
using Admin.Core.IService;
|
|
using Admin.Core.Model;
|
|
using log4net;
|
|
|
|
namespace Admin.Core.Service
|
|
{
|
|
public class BoxFoamPlanServices : BaseServices<BoxFoamPlan>, IBoxFoamPlanServices
|
|
{
|
|
private readonly IBaseRepository<BoxFoamPlan> _dal;
|
|
public BoxFoamPlanServices(IBaseRepository<BoxFoamPlan> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
|
|
}
|
|
} |