public string getChanges()
    {
        ShiftsEmployee       empl     = new ShiftsEmployee();
        List <string>        emplList = empl.getEmployeeSObjects();
        JavaScriptSerializer js       = new JavaScriptSerializer();
        string jsonString             = js.Serialize(emplList);

        return(jsonString);
    }