예제 #1
0
        public static void Delete(Guid userID)
        {
            // first check if we have the right to delete that user - authorization

            UserAddressRepository.Delete(userID);
            UserRepository.Delete(userID);
        }