Beispiel #1
0
        public ActionResult <DelayProfileResource> Create(DelayProfileResource resource)
        {
            var model = resource.ToModel();

            model = _delayProfileService.Add(model);

            return(Created(model.Id));
        }
        private int Create(DelayProfileResource resource)
        {
            var model = resource.ToModel();

            model = _delayProfileService.Add(model);

            return(model.Id);
        }