Esempio n. 1
0
        private void Create(UserDTO dto)
        {
            if (!dto.IsNotDeletedUser())
            {
                return;
            }

            UserByIdStorage(dto).Add(dto);
            UserByEmailStorage(dto).Add(dto);
        }