Пример #1
0
        public void UpdateAffiliateObjectives(int id, [FromBody] IEnumerable <AffiliateObjective> objectives)
        {
            var affiliateObjectives = objectives as IList <AffiliateObjective> ?? objectives.ToList();

            affiliateObjectives.ForEach(UpdateAuditData);

            _affiliateService.UpdateAffiliateObjectives(id, affiliateObjectives);
        }