Exemple #1
0
        public bool DeleteClassify(int classifyId)
        {
            Entity.m_NavigationClassify model = new Entity.m_NavigationClassify();
            model.CId = classifyId;
            CommonRepository repository = new CommonRepository();

            return(repository.Delete(model));
        }
Exemple #2
0
        public bool EditClassify(Entity.m_NavigationClassify model)
        {
            CommonRepository repository = new CommonRepository();

            return(repository.Update(model));
        }
Exemple #3
0
        public bool AddClassify(Entity.m_NavigationClassify model)
        {
            CommonRepository repository = new CommonRepository();

            return(repository.Add(model));
        }