Пример #1
0
        private Boolean UpdateAgencyAssocation(Int32 idUser, Agency agency)
        {
            Boolean saved = false;

            try
            {
                ProfileService.AddEmployeeAffiliation(agency.Id, idUser);
            }
            catch (Exception ex)
            {
            }
            return(saved);
        }