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.
AUCMA_SCADA/Admin.Core.Service/Service_New/DoorFoamMachineServices.cs

17 lines
451 B
C#

using Admin.Core.IRepository;
using Admin.Core.IService;
using Admin.Core.Model;
namespace Admin.Core.Service
{
public class DoorFoamMachineServices : BaseServices<DoorFoamMachine>, IDoorFoamMachineServices
{
private readonly IBaseRepository<DoorFoamMachine> _dal;
public DoorFoamMachineServices(IBaseRepository<DoorFoamMachine> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}