public TeSysConfiguratorController(IService <PowerAndCurrent> powerAndCurrentService, IService <CurrentType> currentTypeService, ICoilRepository coilRepository, IService <CircuitBreaker> circuitBreakerService, IService <Contactor> contactorService, IService <Coil> coilService, TeSysService teSysService, EmailService emailService) { _powerAndCurrentService = powerAndCurrentService; _currentTypeService = currentTypeService; _coilRepository = coilRepository; _circuitBreakerService = circuitBreakerService; _contactorService = contactorService; _coilService = coilService; _teSysService = teSysService; _emailService = emailService; }
public CoilScheduleController(ICoilRepository coilRepository) { _coilRepository = coilRepository; }