public ActionResult Services(string userUID) { if (!String.IsNullOrEmpty(userUID)) { userUID = userUID.Trim(); Database db = new Database(); CustomerDAO cDAO = new CustomerDAO(db); CustomerModel cModel = cDAO.FindByUid(userUID); db.Close(); /// ถ้ามีข้อมูลให้เก็บไว้ที่ วิวดาต้าเพื่อนำไปแสดง <-- james if (cModel != null) { ViewData["CUST"] = cModel; db = new Database(); ProductTypeDAO ptDAO = new ProductTypeDAO(db); List <ProductTypeModel> listPTModel = ptDAO.FindAll(); db.Close(); ViewData["PROTYPE"] = listPTModel; } else { ViewData["CUST"] = null; } } return(View()); }
public ActionResult ProductTypeManagement() { Database db = new Database(); ProductTypeDAO ptDAO = new ProductTypeDAO(db); List <ProductTypeModel> ptModel = ptDAO.FindAll(); db.Close(); ViewBag.ProductType = ptModel; return(View()); }
public ActionResult ManageProduct() { Database db = new Database(); ProductTypeDAO ptDAO = new ProductTypeDAO(db); List <ProductTypeModel> lisPTModel = ptDAO.FindAll(); db.Close(); ViewData["PRODUCT_TYPE"] = lisPTModel; return(View()); }
public ActionResult EditRepair() { int repairID = Int32.Parse(Request.Params["repID"]); // ค้นข้อมูลของรายการซ่อมเพื่อแก้ไข Database db = new Database(); RepairDAO rDAO = new RepairDAO(db); RepairModel lsRModel = rDAO.FindById(repairID); db.Close(); ViewData["REPAIR"] = lsRModel; // รายการประเภทสินค้า db = new Database(); ProductTypeDAO ptDAO = new ProductTypeDAO(db); List <ProductTypeModel> lPTModel = ptDAO.FindAll(); db.Close(); ViewData["PRODUCTTYPE"] = lPTModel; // รายการยี่ห้อสินค้า db = new Database(); ProductDAO pDAO = new ProductDAO(db); List <ProductModel> pModel = pDAO.FindByTypeID(lsRModel.PRODUCT.TYPE.PRO_TYP_ID); db.Close(); ViewData["BRAND"] = pModel; //รายการผู้รับผิดชอบ db = new Database(); UsersDAO uDAO = new UsersDAO(db); List <UsersModel> uModel = uDAO.FindAll(); db.Close(); ViewData["STAFF"] = uModel; return(View()); }