Subversion Repositories SmartDukaan

Rev

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

Rev 597 Rev 760
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.AllItemsListHandler;
-
 
5
import in.shop2020.hotspot.dashbaord.server.handler.AllProvidersListHandler;
5
import in.shop2020.hotspot.dashbaord.server.handler.BestDealsHandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.BestDealsHandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.BestSellersHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.BestSellersHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.ItemDetailsHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.ItemDetailsHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.LatestArrivalsHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.LatestArrivalsHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderListHandler;
10
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderListHandler;
Line 47... Line 48...
47
		bindHandler(AllItemsListHandler.class);
48
		bindHandler(AllItemsListHandler.class);
48
		bindHandler(BestDealsHandler.class);
49
		bindHandler(BestDealsHandler.class);
49
		bindHandler(BestSellersHandler.class);
50
		bindHandler(BestSellersHandler.class);
50
		bindHandler(LatestArrivalsHandler.class);
51
		bindHandler(LatestArrivalsHandler.class);
51
		bindHandler(ItemDetailsHandler.class);
52
		bindHandler(ItemDetailsHandler.class);
-
 
53
		
-
 
54
		bindHandler(AllProvidersListHandler.class);
52
	}
55
	}
53
 
56
 
54
}
57
}