Subversion Repositories SmartDukaan

Rev

Rev 4366 | Rev 4421 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4366 Rev 4397
Line 1... Line 1...
1
package in.shop2020.hotspot.dashbaord.server.guice;
1
package in.shop2020.hotspot.dashbaord.server.guice;
2
 
2
 
3
import in.shop2020.hotspot.dashbaord.server.handler.AddDelayReasonHandler;
3
import in.shop2020.hotspot.dashbaord.server.handler.AddDelayReasonHandler;
4
import in.shop2020.hotspot.dashbaord.server.handler.AddWeightHandler;
4
import in.shop2020.hotspot.dashbaord.server.handler.AddWeightHandler;
-
 
5
import in.shop2020.hotspot.dashbaord.server.handler.AlertsHandler;
5
import in.shop2020.hotspot.dashbaord.server.handler.AllReturnOrdersListHandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.AllReturnOrdersListHandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.ChooseColorHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.ChooseColorHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.ChooseWarehouseHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.ChooseWarehouseHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.OrderCountsHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.OrderCountsHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.PrintPendingOrderHandler;
10
import in.shop2020.hotspot.dashbaord.server.handler.PrintPendingOrderHandler;
Line 60... Line 61...
60
		bindHandler(ValidateDoaHandler.class);
61
		bindHandler(ValidateDoaHandler.class);
61
		bindHandler(ReshipOrderHandler.class);
62
		bindHandler(ReshipOrderHandler.class);
62
		bindHandler(PrintPendingOrderHandler.class);
63
		bindHandler(PrintPendingOrderHandler.class);
63
		bindHandler(SearchOrderHandler.class);
64
		bindHandler(SearchOrderHandler.class);
64
		bindHandler(OrderCountsHandler.class);
65
		bindHandler(OrderCountsHandler.class);
-
 
66
		bindHandler(AlertsHandler.class);
65
		
67
		
66
		bindHandler(AllReturnOrdersListHandler.class);
68
		bindHandler(AllReturnOrdersListHandler.class);
67
		bindHandler(ReturnOrderDetailsHandler.class);
69
		bindHandler(ReturnOrderDetailsHandler.class);
68
		bindHandler(ProcessReturnOrderHandler.class);
70
		bindHandler(ProcessReturnOrderHandler.class);
69
		
71