コード例 #1
0
        public void UpdateCustomer(CustomerDM customerDM)
        {
            try
            {
                UOW.Customers.Update(customerDM.ToCustomer());

                UOW.Save();
            }
            catch (Exception ex)
            {
                throw new DataException(ex.Message, "Error in updating Customer");
            }
        }