Exemple #1
0
        public async Task <ActionResult <SocialListVM> > CreateSocialList(SocialListVM doc)
        {
            await _manager.Create(doc);

            return(CreatedAtAction(nameof(GetSocialList), new { id = doc.Id }, doc));
        }