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

            return(categoryDAL.InsertCategory(category));
        }