|
|
|
@ -29,8 +29,10 @@ public class SwapMonitorController : ControllerBase
|
|
|
|
|
private readonly IStringLocalizer<SwapMonitorController> _localizer;
|
|
|
|
|
public readonly SwapOrderRepository _swapOrderRepository;
|
|
|
|
|
|
|
|
|
|
public SwapMonitorController(MonitorService swapMonitorService, BinInfoService binInfoService,SwapOrderRepository swapOrderRepository)
|
|
|
|
|
public SwapMonitorController(MonitorService swapMonitorService, BinInfoService binInfoService,SwapOrderRepository swapOrderRepository,
|
|
|
|
|
IStringLocalizer<SwapMonitorController> localizer)
|
|
|
|
|
{
|
|
|
|
|
_localizer = localizer;
|
|
|
|
|
_swapMonitorService = swapMonitorService;
|
|
|
|
|
_binInfoService = binInfoService;
|
|
|
|
|
_swapOrderRepository = swapOrderRepository;
|
|
|
|
|