Exemple #1
0
        public async Task <ProcessResponseTO> AddAsync(ProcessRequestTO processRequestTO)
        {
            await _processService.ValidateAddAsync(processRequestTO);

            return(await _processService.AddAsync(processRequestTO));
        }