Пример #1
0
        public IActionResult UpdateInfo([FromBody] EmployeeInfoToShare updatedInfo, int id)
        {
            if (updatedInfo != null)
            {
                var newEmployeeUtils = new EmployeeUtils();
                if (updatedInfo.FirstName != null)
                {
                    updatedInfo.EmployeeId = id;
                    if (newEmployeeUtils.EditEmployeeAccount(updatedInfo))
                    {
                        return(NoContent());
                    }
                }
                return(BadRequest("Invalid Input!!!"));
            }
            else
            {
                var newEmployeeUtils = new EmployeeUtils();
                var empToClean       = newEmployeeUtils.GetEmployeeById(id);
                if (empToClean != null)
                {
                    return(Ok(empToClean));
                }

                return(NotFound($"Couldnt find an Employee with the ID: {id}"));
            }
        }
Пример #2
0
 public IActionResult UpdateInfo([FromBody] EmployeeInfoToShare updatedInfo, int id)
 {
     if (updatedInfo != null)
     {
         var newEmployeeUtils = new EmployeeUtils();
         if (updatedInfo.FirstName != null)
         {
             updatedInfo.EmployeeId = id;
             if (newEmployeeUtils.EditEmployeeAccount(updatedInfo))
             {
                 return(NoContent());
             }
         }
     }
     return(BadRequest("Invalid Input!!!"));
 }