예제 #1
0
 public bool InsertCategory(CategoryDic model)
 {
     return(dbManager.Execute(conn => DALCategory.InsertCategory(conn, model)));
 }
예제 #2
0
        public bool InsertCategory(Category category)
        {
            DALCategory categoryDAL = new DALCategory();

            return(categoryDAL.InsertCategory(category));
        }