Ejemplo n.º 1
0
        public IActionResult Update(int id, [FromBody] FtpConfigDto ftpConfigDto)
        {
            var model  = Mapper.Map <FtpConfig>(ftpConfigDto);
            var result = _ftpConfigService.Update(model);

            return(Ok());
        }
Ejemplo n.º 2
0
        public IActionResult Insert([FromBody] FtpConfigDto ftpConfigDto)
        {
            var ftpConfig = Mapper.Map <FtpConfig>(ftpConfigDto);

            return(Ok(_ftpConfigService.Insert(ftpConfig)));
        }