public ActionResult ChangeAirCooler(cAirCooler airCooler, int?quantity, string image)
        {
            CRUDService.ServiceClient sr = new CRUDService.ServiceClient();
            PartsStock part = new PartsStock();

            if (quantity != null)
            {
                part.Quantity = (int)quantity;
            }
            else
            {
                part.Quantity = sr.getPart(airCooler.id).Quantity;
            }
            if (image != null && image != "")
            {
                part.Image = image;
            }
            else
            {
                part.Image = sr.getPart(airCooler.id).image;
            }
            bool done = sr.EditAirCooler(airCooler, part, airCooler.id);

            if (done)
            {
                return(this.Redirect(Url.Action("Complete", "EditProduct")));
            }
            else
            {
                return(this.Redirect(Url.Action("AirCooler", "EditProduct")));
            }
        }
        public ActionResult AirCooler(int id)
        {
            CRUDService.ServiceClient sr = new CRUDService.ServiceClient();
            cAirCooler part = sr.getAirCooler(id);

            return(View(part));
        }
Beispiel #3
0
        public ActionResult AirCooler()
        {
            if (Convert.ToInt32(Session["UserType"]) != 1 && Convert.ToInt32(Session["UserType"]) != 3)
            {
                return(this.Redirect(@Url.Action("Index", "Home")));
            }
            cAirCooler airCooler = new cAirCooler
            {
                active = 0
            };

            return(View(airCooler));
        }
Beispiel #4
0
        public ActionResult addAirCooler(cAirCooler airCooler, string image)
        {
            if (Convert.ToInt32(Session["UserType"]) != 1 && Convert.ToInt32(Session["UserType"]) != 3)
            {
                return(this.Redirect(@Url.Action("Index", "Home")));
            }
            CRUDService.ServiceClient sr = new CRUDService.ServiceClient();
            bool added = sr.addAirCooler(airCooler, 1, image);

            if (added)
            {
                return(this.Redirect(Url.Action("Complete", "AddNewProduct")));
            }
            else
            {
                return(this.Redirect(Url.Action("AirCooler", "AddNewProduct")));
            }
        }