Esempio n. 1
0
        public void CreateTopic(CreateTopicDto newCreateTopicData)
        {
            var newTopic = Mapper.Map <Topic>(newCreateTopicData);

            newTopic.UserId = _accRepo.GetProfileIdByAccountId(newCreateTopicData.UserAccountId);
            _topicRepo.AddNewItem(newTopic);
            _topicRepo.SaveChanges();
        }