示例#1
0
        public bool AddListCustomers(ListCreateCustomersCommand customers)
        {
            try
            {
                var addCustomerResult = _repository.AddListCustomersInBulk(customers);
                return(addCustomerResult == 0 ? false : true);
            }

            catch (Exception ex)
            {
                return(false);
            }
        }