Subversion Repositories SmartDukaan

Rev

Rev 487 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 487 Rev 584
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.AcceptOrderhandler;
3
import in.shop2020.hotspot.dashbaord.server.handler.AcceptOrderhandler;
-
 
4
import in.shop2020.hotspot.dashbaord.server.handler.AllItemsListHandler;
4
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderListHandler;
5
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderListHandler;
5
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderhandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderhandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.RejectOrderHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.RejectOrderHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.AcceptedOrderListHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.AcceptedOrderListHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
Line 36... Line 37...
36
		bindHandler(BillOrderHandler.class);
37
		bindHandler(BillOrderHandler.class);
37
		bindHandler(BilledOrderListHandler.class);
38
		bindHandler(BilledOrderListHandler.class);
38
		bindHandler(ShippedOrderListHandler.class);
39
		bindHandler(ShippedOrderListHandler.class);
39
		bindHandler(AllOrderListHandler.class);
40
		bindHandler(AllOrderListHandler.class);
40
		bindHandler(WarningRequestHandler.class);
41
		bindHandler(WarningRequestHandler.class);
-
 
42
		
-
 
43
		bindHandler(AllItemsListHandler.class);
41
	}
44
	}
42
 
45
 
43
}
46
}