本文整理汇总了C#中ManufacturerModel.ToEntity方法的典型用法代码示例。如果您正苦于以下问题:C# ManufacturerModel.ToEntity方法的具体用法?C# ManufacturerModel.ToEntity怎么用?C# ManufacturerModel.ToEntity使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ManufacturerModel
的用法示例。
在下文中一共展示了ManufacturerModel.ToEntity方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Create
public ActionResult Create(ManufacturerModel model, bool continueEditing)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageManufacturers))
return AccessDeniedView();
if (ModelState.IsValid)
{
var manufacturer = model.ToEntity();
manufacturer.CreatedOnUtc = DateTime.UtcNow;
manufacturer.UpdatedOnUtc = DateTime.UtcNow;
_manufacturerService.InsertManufacturer(manufacturer);
//search engine name
model.SeName = manufacturer.ValidateSeName(model.SeName, manufacturer.Name, true);
_urlRecordService.SaveSlug(manufacturer, model.SeName, 0);
//locales
UpdateLocales(manufacturer, model);
//update picture seo file name
UpdatePictureSeoNames(manufacturer);
//ACL (customer roles)
SaveManufacturerAcl(manufacturer, model);
//Stores
SaveStoreMappings(manufacturer, model);
//activity log
_customerActivityService.InsertActivity("AddNewManufacturer", _localizationService.GetResource("ActivityLog.AddNewManufacturer"), manufacturer.Name);
SuccessNotification(_localizationService.GetResource("Admin.Catalog.Manufacturers.Added"));
return continueEditing ? RedirectToAction("Edit", new { id = manufacturer.Id }) : RedirectToAction("List");
}
//If we got this far, something failed, redisplay form
//templates
PrepareTemplatesModel(model);
//ACL
PrepareAclModel(model, null, true);
//Stores
PrepareStoresMappingModel(model, null, true);
return View(model);
}
示例2: Edit
public ActionResult Edit(ManufacturerModel model, bool continueEditing)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageManufacturers))
return AccessDeniedView();
var manufacturer = _manufacturerService.GetManufacturerById(model.Id);
if (manufacturer == null || manufacturer.Deleted)
//No manufacturer found with the specified id
return RedirectToAction("List");
if (ModelState.IsValid)
{
int prevPictureId = manufacturer.PictureId;
manufacturer = model.ToEntity(manufacturer);
manufacturer.UpdatedOnUtc = DateTime.UtcNow;
_manufacturerService.UpdateManufacturer(manufacturer);
//search engine name
model.SeName = manufacturer.ValidateSeName(model.SeName, manufacturer.Name, true);
_urlRecordService.SaveSlug(manufacturer, model.SeName, 0);
//locales
UpdateLocales(manufacturer, model);
//delete an old picture (if deleted or updated)
if (prevPictureId > 0 && prevPictureId != manufacturer.PictureId)
{
var prevPicture = _pictureService.GetPictureById(prevPictureId);
if (prevPicture != null)
_pictureService.DeletePicture(prevPicture);
}
//update picture seo file name
UpdatePictureSeoNames(manufacturer);
//ACL
SaveManufacturerAcl(manufacturer, model);
//Stores
SaveStoreMappings(manufacturer, model);
//activity log
_customerActivityService.InsertActivity("EditManufacturer", _localizationService.GetResource("ActivityLog.EditManufacturer"), manufacturer.Name);
SuccessNotification(_localizationService.GetResource("Admin.Catalog.Manufacturers.Updated"));
if (continueEditing)
{
//selected tab
SaveSelectedTabIndex();
return RedirectToAction("Edit", manufacturer.Id);
}
else
{
return RedirectToAction("List");
}
}
//If we got this far, something failed, redisplay form
//templates
PrepareTemplatesModel(model);
//ACL
PrepareAclModel(model, manufacturer, true);
//Stores
PrepareStoresMappingModel(model, manufacturer, true);
return View(model);
}
示例3: Edit
public ActionResult Edit(ManufacturerModel model, bool continueEditing)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCatalog))
return AccessDeniedView();
var manufacturer = _manufacturerService.GetManufacturerById(model.Id);
if (manufacturer == null || manufacturer.Deleted)
//No manufacturer found with the specified id
return RedirectToAction("List");
if (ModelState.IsValid)
{
manufacturer = model.ToEntity(manufacturer);
manufacturer.UpdatedOnUtc = DateTime.UtcNow;
_manufacturerService.UpdateManufacturer(manufacturer);
//locales
UpdateLocales(manufacturer, model);
//update picture seo file name
UpdatePictureSeoNames(manufacturer);
//activity log
_customerActivityService.InsertActivity("EditManufacturer", _localizationService.GetResource("ActivityLog.EditManufacturer"), manufacturer.Name);
SuccessNotification(_localizationService.GetResource("Admin.Catalog.Manufacturers.Updated"));
return continueEditing ? RedirectToAction("Edit", manufacturer.Id) : RedirectToAction("List");
}
//If we got this far, something failed, redisplay form
//templates
PrepareTemplatesModel(model);
return View(model);
}
示例4: Edit
public ActionResult Edit(ManufacturerModel model, bool continueEditing)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCatalog))
return AccessDeniedView();
var manufacturer = _manufacturerService.GetManufacturerById(model.Id);
if (manufacturer == null || manufacturer.Deleted)
return RedirectToAction("List");
if (ModelState.IsValid)
{
manufacturer = model.ToEntity(manufacturer);
MediaHelper.UpdatePictureTransientStateFor(manufacturer, m => m.PictureId);
manufacturer.UpdatedOnUtc = DateTime.UtcNow;
_manufacturerService.UpdateManufacturer(manufacturer);
//search engine name
model.SeName = manufacturer.ValidateSeName(model.SeName, manufacturer.Name, true);
_urlRecordService.SaveSlug(manufacturer, model.SeName, 0);
//locales
UpdateLocales(manufacturer, model);
//update picture seo file name
UpdatePictureSeoNames(manufacturer);
//Stores
_storeMappingService.SaveStoreMappings<Manufacturer>(manufacturer, model.SelectedStoreIds);
//activity log
_customerActivityService.InsertActivity("EditManufacturer", _localizationService.GetResource("ActivityLog.EditManufacturer"), manufacturer.Name);
NotifySuccess(_localizationService.GetResource("Admin.Catalog.Manufacturers.Updated"));
return continueEditing ? RedirectToAction("Edit", manufacturer.Id) : RedirectToAction("List");
}
//If we got this far, something failed, redisplay form
//templates
PrepareTemplatesModel(model);
PrepareManufacturerModel(model, manufacturer, true);
return View(model);
}
示例5: Edit
public ActionResult Edit(ManufacturerModel model, bool continueEditing)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageManufacturers))
return AccessDeniedView();
var manufacturer = _manufacturerService.GetManufacturerById(model.Id);
if (manufacturer == null || manufacturer.Deleted)
//No manufacturer found with the specified id
return RedirectToAction("List");
if (ModelState.IsValid)
{
int prevPictureId = manufacturer.PictureId;
manufacturer = model.ToEntity(manufacturer);
manufacturer.UpdatedOnUtc = DateTime.UtcNow;
_manufacturerService.UpdateManufacturer(manufacturer);
//search engine name
model.SeName = manufacturer.ValidateSeName(model.SeName, manufacturer.Name, true);
_urlRecordService.SaveSlug(manufacturer, model.SeName, 0);
//locales
UpdateLocales(manufacturer, model);
//discounts
var allDiscounts = _discountService.GetAllDiscounts(DiscountType.AssignedToManufacturers, showHidden: true);
foreach (var discount in allDiscounts)
{
if (model.SelectedDiscountIds != null && model.SelectedDiscountIds.Contains(discount.Id))
{
//new discount
if (manufacturer.AppliedDiscounts.Count(d => d.Id == discount.Id) == 0)
manufacturer.AppliedDiscounts.Add(discount);
}
else
{
//remove discount
if (manufacturer.AppliedDiscounts.Count(d => d.Id == discount.Id) > 0)
manufacturer.AppliedDiscounts.Remove(discount);
}
}
_manufacturerService.UpdateManufacturer(manufacturer);
//update "HasDiscountsApplied" property
_manufacturerService.UpdateHasDiscountsApplied(manufacturer);
//delete an old picture (if deleted or updated)
if (prevPictureId > 0 && prevPictureId != manufacturer.PictureId)
{
var prevPicture = _pictureService.GetPictureById(prevPictureId);
if (prevPicture != null)
_pictureService.DeletePicture(prevPicture);
}
//update picture seo file name
UpdatePictureSeoNames(manufacturer);
//ACL
SaveManufacturerAcl(manufacturer, model);
//Stores
SaveStoreMappings(manufacturer, model);
//activity log
_customerActivityService.InsertActivity("EditManufacturer", _localizationService.GetResource("ActivityLog.EditManufacturer"), manufacturer.Name);
SuccessNotification(_localizationService.GetResource("Admin.Catalog.Manufacturers.Updated"));
if (continueEditing)
{
//selected tab
SaveSelectedTabIndex();
return RedirectToAction("Edit", new {id = manufacturer.Id});
}
return RedirectToAction("List");
}
//If we got this far, something failed, redisplay form
//templates
PrepareTemplatesModel(model);
//discounts
PrepareDiscountModel(model, manufacturer, true);
//ACL
PrepareAclModel(model, manufacturer, true);
//Stores
PrepareStoresMappingModel(model, manufacturer, true);
return View(model);
}
示例6: Create
public ActionResult Create(ManufacturerModel model, bool continueEditing)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageManufacturers))
return AccessDeniedView();
if (ModelState.IsValid)
{
var manufacturer = model.ToEntity();
manufacturer.CreatedOnUtc = DateTime.UtcNow;
manufacturer.UpdatedOnUtc = DateTime.UtcNow;
manufacturer.Stores = model.SelectedStoreIds != null ? model.SelectedStoreIds.ToList() : new List<int>();
manufacturer.CustomerRoles = model.SelectedCustomerRoleIds != null ? model.SelectedCustomerRoleIds.ToList() : new List<int>();
//discounts
var allDiscounts = _discountService.GetAllDiscounts(DiscountType.AssignedToManufacturers, showHidden: true);
foreach (var discount in allDiscounts)
{
if (model.SelectedDiscountIds != null && model.SelectedDiscountIds.Contains(discount.Id))
manufacturer.AppliedDiscounts.Add(discount);
}
_manufacturerService.InsertManufacturer(manufacturer);
//search engine name
manufacturer.Locales = UpdateLocales(manufacturer, model);
model.SeName = manufacturer.ValidateSeName(model.SeName, manufacturer.Name, true);
manufacturer.SeName = model.SeName;
_manufacturerService.UpdateManufacturer(manufacturer);
_urlRecordService.SaveSlug(manufacturer, model.SeName, 0);
//update "HasDiscountsApplied" property
//_manufacturerService.UpdateHasDiscountsApplied(manufacturer);
//update picture seo file name
UpdatePictureSeoNames(manufacturer);
//activity log
_customerActivityService.InsertActivity("AddNewManufacturer", manufacturer.Id, _localizationService.GetResource("ActivityLog.AddNewManufacturer"), manufacturer.Name);
SuccessNotification(_localizationService.GetResource("Admin.Catalog.Manufacturers.Added"));
return continueEditing ? RedirectToAction("Edit", new { id = manufacturer.Id }) : RedirectToAction("List");
}
//If we got this far, something failed, redisplay form
//templates
PrepareTemplatesModel(model);
//discounts
PrepareDiscountModel(model, null, true);
//ACL
PrepareAclModel(model, null, true);
//Stores
PrepareStoresMappingModel(model, null, true);
return View(model);
}
示例7: Create
public ActionResult Create(ManufacturerModel model, bool continueEditing)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCatalog))
return AccessDeniedView();
//decode description
model.Description = HttpUtility.HtmlDecode(model.Description);
foreach (var localized in model.Locales)
localized.Description = HttpUtility.HtmlDecode(localized.Description);
if (ModelState.IsValid)
{
var manufacturer = model.ToEntity();
manufacturer.CreatedOnUtc = DateTime.UtcNow;
manufacturer.UpdatedOnUtc = DateTime.UtcNow;
_manufacturerService.InsertManufacturer(manufacturer);
//locales
UpdateLocales(manufacturer, model);
//update picture seo file name
UpdatePictureSeoNames(manufacturer);
//activity log
_customerActivityService.InsertActivity("AddNewManufacturer", _localizationService.GetResource("ActivityLog.AddNewManufacturer"), manufacturer.Name);
SuccessNotification(_localizationService.GetResource("Admin.Catalog.Manufacturers.Added"));
return continueEditing ? RedirectToAction("Edit", new { id = manufacturer.Id }) : RedirectToAction("List");
}
//If we got this far, something failed, redisplay form
//templates
PrepareTemplatesModel(model);
return View(model);
}