Пример #1
0
        public ActionResult OnDelete(int id)
        {
            var result = ProductStoreService.Delete(id);

            SetFlashMessage(result == Result.Ok ?
                            "Xóa kho hàng thành công." :
                            "Kho hàng không tồn tại trên hệ thống.");
            return(RedirectToAction("Index"));
        }