示例#1
0
        public ActionResult CreateOEM(CreateOEM CreateOEM)
        {
            var manufacturer = ConvertToEntityOEM(CreateOEM);

            _adminServices.AddOEM(manufacturer);
            return(RedirectToAction("index", "Home", null));
        }