//دانشکده-Remove
        public static Dictionary <string, string> SyncRemoveColleges(ICollegeService collegeService)
        {
            var colleges = ClientHelper.GetValue <College>(StaticValue.CollegeRelativeAddress);

            var resualt = new Dictionary <string, string>();
            var counter = 1;

            colleges.ForEach(x =>
            {
                if (x != null)
                {
                    var r = collegeService.Remove(x);
                    resualt.Add($"{x.Name}-{counter}", r.GetDeleteResualt());
                    ++counter;
                }
            });
            return(resualt);
        }