public int Remove(StudentEducationalClassSyncModel model)
        {
            var repo = new StudentEducationalClassRepository(new DatabaseFactory());

            return(repo.Remove(model, true));
        }
        public int AddOrUpdate(StudentEducationalClassSyncModel model)
        {
            var repo = new StudentEducationalClassRepository(new DatabaseFactory());

            return(repo.AddOrUpdate(model));
        }