Ejemplo n.º 1
0
        //NEW ITEMS

        public void DeleteCustomerById(string customerId)
        {
            try
            {
                repo.DeleteCustomerById(customerId);
                Log.Information("Successfully removed customer");
            }catch (Exception e)
            {
                Log.Information($"Failed to remove customer - {e.Message}");
            }
        }