示例#1
0
        public bool AddCustomer(CustomerDTO customer)
        {
            var userId = User.Identity.GetUserId();

            return(cq.AddCustomer(customer, userId));
        }