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

            _adminServices.AddOEM(manufacturer);
            return(RedirectToAction("index", "Home", null));
        }
Example #2
0
 private Manufacturer ConvertToEntityOEM(CreateOEM createOEM)
 {
     return(new Manufacturer()
     {
         Country = createOEM.Country, Name = createOEM.Name
     });
 }