Beispiel #1
0
 public async Task <Dictionary <string, string> > CreateBulk(string newProjectId, IEnumerable <Checklist> items)
 {
     foreach (var item in items)
     {
         item.ProjectId = newProjectId;
     }
     return(await _checklistRepository.AddWithIdMap(items));
 }