Ejemplo n.º 1
0
        public ActionResult <DelayProfileResource> Create(DelayProfileResource resource)
        {
            var model = resource.ToModel();

            model = _delayProfileService.Add(model);

            return(Created(model.Id));
        }
Ejemplo n.º 2
0
        private int Create(DelayProfileResource resource)
        {
            var model = resource.ToModel();

            model = _delayProfileService.Add(model);

            return(model.Id);
        }