Example #1
0
        public AjaxResult deleteMulti([FromBody] List <Guid> customerIDs)
        {
            var _ajaxResult = new AjaxResult();

            try
            {
                customerDL.DeleteCustomers(customerIDs);
            }
            catch (Exception ex)
            {
                _ajaxResult.Success = false;
                _ajaxResult.Message = Resources.errorVN;
                _ajaxResult.Data    = ex;
            }
            return(_ajaxResult);
        }