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.
17 lines
428 B
C#
17 lines
428 B
C#
using Admin.Core.IRepository;
|
|
using Admin.Core.Service;
|
|
using Admin.Core.IService;
|
|
using Admin.Core.Model;
|
|
|
|
namespace Admin.Core.Service
|
|
{
|
|
public class Hw_PumpServices : BaseServices<Hw_Pump>, IHw_PumpServices
|
|
{
|
|
private readonly IBaseRepository<Hw_Pump> _dal;
|
|
public Hw_PumpServices(IBaseRepository<Hw_Pump> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
}
|
|
} |