Advertisement
minafaw3

services

Oct 26th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.08 KB | None | 0 0
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Text;
  4. using System.Data;
  5. using System;
  6. using DogVille.Models;
  7.  
  8. namespace DogVille
  9. {
  10. // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in code, svc and config file together.
  11. // NOTE: In order to launch WCF Test Client for testing this service, please select Service1.svc or Service1.svc.cs at the Solution Explorer and start debugging.
  12. public class UserService : IUserService
  13. {
  14.  
  15.  
  16.  
  17. StringBuilder sb = new StringBuilder();
  18.  
  19.  
  20. #region"Mobile App Web Service"
  21.  
  22.  
  23. public List<ProductResponse> getProductList()
  24. {
  25. var dt = (new DBHelper()).GetResultSet("SELECT * FROM Products");
  26. var qProduct = from dr in dt.AsEnumerable()
  27. select new ProductResponse()
  28. {
  29. ProductName = dr["ProductName"].ToString(),
  30. description = dr["description"].ToString(),
  31. imageUrl =dr["imageURL"].ToString(),
  32. NoOfViews = dr["NoOfViews"].ToString(),
  33. price = dr["Price"].ToString(),
  34. Typeid = dr["Typeid"].ToString(),
  35. ProductId = dr["ProductId"].ToString()
  36. };
  37. return qProduct.ToList();
  38. }
  39.  
  40. public List<UserResponse> getEmployeeList()
  41. {
  42. var dt = (new DBHelper()).GetResultSet("SELECT ID,firstname,lastname,email,phone FROM users_info");
  43. var qUser = from dr in dt.AsEnumerable()
  44. select new UserResponse()
  45. {
  46. id = dr["ID"].ToString(),
  47. firstName = dr["firstName"].ToString(),
  48. lastName = dr["lastName"].ToString(),
  49. email = dr["email"].ToString(),
  50. phone = dr["phone"].ToString()
  51. };
  52.  
  53. return qUser.ToList();
  54. }
  55.  
  56. public UserResponse getUserByID(string username,string password)
  57. {
  58. var dt = (new DBHelper()).GetResultSet(sb.AppendFormat("SELECT FirstName,password FROM users_info WHERE FirstName='{0}' AND password='{1}'", username, password).ToString());
  59. if (dt.Rows.Count > 0)
  60. {
  61. var dr = dt.Rows[0];
  62. return new UserResponse()
  63. {
  64. // id = dr["ID"].ToString(),
  65. firstName = dr["FirstName"].ToString(),
  66. // lastName = dr["lastname"].ToString(),
  67. // email = dr["email"].ToString(),
  68. phone = dr["password"].ToString()
  69. };
  70. }
  71. return null;
  72. }
  73.  
  74. public RegistrationResponse register(RegistrationRequest request)
  75. {
  76. try
  77. {
  78. sb.Append("INSERT INTO users_info (firstname,password,phone,email) VALUES ");
  79. sb.AppendFormat("( '{0}','{1}','{2}','{3}')", request.UserName, request.Password, request.Phone, request.Email);
  80.  
  81. (new DBHelper()).SqlExecute(sb.ToString());
  82. return new RegistrationResponse()
  83. {
  84. isSuccessful = true,
  85. resultMessage = "Register Successfully completed",
  86. };
  87. }
  88. catch (Exception e)
  89. {
  90. return new RegistrationResponse()
  91. {
  92. isSuccessful = false,
  93. resultMessage = "Operation not completed",
  94. };
  95. }
  96. }
  97.  
  98. public void updateUser(User user)
  99. {
  100. sb.Append("UPDATE users_info SET ");
  101. sb.AppendFormat("( firstname = {0}, lastname = {1},phone = {2}, email = {3} WHERE ID = {4} )", user.firstName, user.lastName, user.phone,user.email, user.id);
  102. (new DBHelper()).SqlExecute(sb.ToString());
  103. }
  104.  
  105. public void deleteUser(string userID)
  106. {
  107. (new DBHelper()).SqlExecute("DELETE FROM user_info WHERE ID =" + userID);
  108. }
  109.  
  110. public LoginResponse login(LoginRequest request)
  111. {
  112. var dt = (new DBHelper()).GetResultSet(sb.AppendFormat("SELECT FirstName,password FROM users_info WHERE FirstName='{0}' AND password='{1}'",request.UserName,request.Password).ToString());
  113. if (dt.Rows.Count > 0)
  114. {
  115. return new LoginResponse()
  116. {
  117. isSuccessful = true,
  118. resultMessage = "Login Successfully completed",
  119. };
  120. }
  121. else
  122. {
  123. return new LoginResponse()
  124. {
  125. isSuccessful = false,
  126. resultMessage = "UserName or Password are incorrect",
  127. };
  128. }
  129.  
  130. }
  131.  
  132. public List<ProductResponse> getHomeAccessory()
  133. {
  134. var dt = (new DBHelper()).GetResultSet("SELECT * FROM Products WHERE typeid = 5 ORDER BY NoOfViews");
  135. var qProduct = from dr in dt.AsEnumerable()
  136. select new ProductResponse()
  137. {
  138. ProductName = dr["ProductName"].ToString(),
  139. description = dr["description"].ToString(),
  140. imageUrl = dr["imageURL"].ToString(),
  141. NoOfViews = dr["NoOfViews"].ToString(),
  142. price = dr["Price"].ToString(),
  143. Typeid = dr["Typeid"].ToString(),
  144. ProductId = dr["ProductId"].ToString()
  145. };
  146. return qProduct.ToList();
  147. }
  148.  
  149. public List<ProductResponse> getHomePuppies()
  150. {
  151. var dt = (new DBHelper()).GetResultSet("SELECT * FROM Dogs WHERE isOrdered = '1' ORDER BY NoOfViews");
  152. var qProduct = from dr in dt.AsEnumerable()
  153. select new ProductResponse()
  154. {
  155. ProductId = dr["ProductId"].ToString(),
  156. ProductName = dr["ProductName"].ToString(),
  157. description = dr["description"].ToString(),
  158. imageUrl = dr["imageURL"].ToString(),
  159. NoOfViews = dr["NoOfViews"].ToString(),
  160. price = dr["Price"].ToString(),
  161. Typeid = dr["Typeid"].ToString(),
  162. };
  163. return qProduct.ToList();
  164. }
  165.  
  166. public List<ProductResponse> getHomeFood()
  167. {
  168. var dt = (new DBHelper()).GetResultSet("SELECT * FROM Products WHERE Typeid = 1 ORDER BY NoOfViews ");
  169. var qProduct = from dr in dt.AsEnumerable()
  170. select new ProductResponse()
  171. {
  172. ProductName = dr["ProductName"].ToString(),
  173. description = dr["description"].ToString(),
  174. imageUrl = dr["imageURL"].ToString(),
  175. NoOfViews = dr["NoOfViews"].ToString(),
  176. price = dr["Price"].ToString(),
  177. Typeid = dr["Typeid"].ToString(),
  178. ProductId = dr["ProductId"].ToString()
  179. };
  180. return qProduct.ToList();
  181. }
  182.  
  183. public List<ProductResponse> getAllPuppies()
  184. {
  185. var dt = (new DBHelper()).GetResultSet("SELECT * FROM Dogs WHERE isOrdered = '1'");
  186. var qProduct = from dr in dt.AsEnumerable()
  187. select new ProductResponse()
  188. {
  189. ProductName = dr["DogName"].ToString(),
  190. description = dr["Description"].ToString(),
  191. imageUrl = dr["imageURL"].ToString(),
  192. NoOfViews = dr["NoOfViews"].ToString(),
  193. price = dr["Price"].ToString(),
  194. Typeid = dr["GenderID"].ToString(),
  195. ProductId = dr["dogID"].ToString()
  196. };
  197. return qProduct.ToList();
  198. }
  199.  
  200. public BaseResponse setSpecialOrder(PuppyOrderRequest request)
  201. {
  202. try
  203. {
  204. sb.Append("INSERT INTO dogs (DogName,Description,Imageurl,genderId,ID,isOrdered) VALUES ");
  205. sb.AppendFormat("( '{0}','{1}','{2}','{3},'{4}','1')", request.puppyName, request.puppyDescription, request.puppyImage,request.puppyGender,request.UserID);
  206. (new DBHelper()).SqlExecute(sb.ToString());
  207. return new BaseResponse()
  208. {
  209. isSuccessful = true,
  210. resultMessage = "Register Successfully completed",
  211. };
  212. }
  213. catch (Exception e)
  214. {
  215. return new BaseResponse()
  216. {
  217. isSuccessful = false,
  218. resultMessage = "Operation not completed",
  219. };
  220. }
  221. }
  222.  
  223. public BaseResponse setProductMessage(ProductMessageRequest request)
  224. {
  225. try
  226. {
  227. sb.Append("Update dogs set Message = ");
  228. sb.AppendFormat(" '{0}' WHERE ID = '{1}' AND dogid = '{2}'", request.productMessage, request.userid, request.productid);
  229. (new DBHelper()).SqlExecute(sb.ToString());
  230. return new BaseResponse()
  231. {
  232. isSuccessful = true,
  233. resultMessage = "Register Successfully completed",
  234. };
  235. }
  236. catch (Exception e)
  237. {
  238. return new BaseResponse()
  239. {
  240. isSuccessful = false,
  241. resultMessage = "Operation not completed",
  242. };
  243. }
  244.  
  245. }
  246.  
  247. public List<TypesModel> getProductTypes()
  248. {
  249. var dt = (new DBHelper()).GetResultSet("SELECT * FROM Types");
  250. var qProduct = from dr in dt.AsEnumerable()
  251. select new TypesModel
  252. {
  253. TypeName = dr["TypeName"].ToString(),
  254. TypeId = int.Parse(dr["TypeID"].ToString())
  255. };
  256. return qProduct.ToList();
  257. }
  258.  
  259. public List<ProductResponse> getProductsByTypes(String request)
  260. {
  261. var dt = (new DBHelper()).GetResultSet(String.Format("SELECT * FROM Products where TypeID = '{0}'",request));
  262. var qProduct = from dr in dt.AsEnumerable()
  263. select new ProductResponse()
  264. {
  265. ProductName = dr["ProductName"].ToString(),
  266. description = dr["description"].ToString(),
  267. imageUrl = dr["imageURL"].ToString(),
  268. NoOfViews = dr["NoOfViews"].ToString(),
  269. price = dr["Price"].ToString(),
  270. Typeid = dr["Typeid"].ToString(),
  271. ProductId = dr["ProductId"].ToString()
  272. };
  273. return qProduct.ToList();
  274. }
  275.  
  276. public TipsModel getTip()
  277. {
  278. var dt = (new DBHelper()).GetResultSet("SELECT * FROM Tips");
  279. var qProduct = from dr in dt.AsEnumerable()
  280. select new TipsModel()
  281. {
  282. Tiptext = dr["Tiptext"].ToString()
  283. };
  284. return qProduct.Last();
  285. }
  286.  
  287. public BaseResponse setTipQuestion(TipQuestionRequest tipQuestion)
  288. {
  289. try
  290. {
  291. sb.Append("INSERT INTO Questions (QuestionText,UserID) VALUES ");
  292. sb.AppendFormat("( '{0}','{1}')", tipQuestion.question, tipQuestion.userID);
  293. (new DBHelper()).SqlExecute(sb.ToString());
  294. return new BaseResponse()
  295. {
  296. isSuccessful = true,
  297. resultMessage = "Register Successfully completed",
  298. };
  299. }
  300. catch (Exception e)
  301. {
  302. return new BaseResponse()
  303. {
  304. isSuccessful = false,
  305. resultMessage = "Operation not completed",
  306. };
  307. }
  308.  
  309. }
  310.  
  311. public BaseResponse setOrder(OrderRequest order)
  312. {
  313. return new BaseResponse();
  314. }
  315.  
  316. public BaseResponse setNoOfViews(NumberOfViews number)
  317. {
  318. try
  319. {
  320. sb.Append("Update dogs set NoOfViews = ");
  321. sb.AppendFormat(" '{2}' WHERE ID = '{1}' AND dogid = '{0}'", number.productID, number.userid, number.numberOfView+1);
  322. (new DBHelper()).SqlExecute(sb.ToString());
  323. return new BaseResponse()
  324. {
  325. isSuccessful = true,
  326. resultMessage = "Register Successfully completed",
  327. };
  328. }
  329. catch (Exception e)
  330. {
  331. return new BaseResponse()
  332. {
  333. isSuccessful = false,
  334. resultMessage = "Operation not completed",
  335. };
  336. }
  337.  
  338.  
  339. }
  340.  
  341. #endregion
  342.  
  343.  
  344. }
  345. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement