コード例 #1
0
        private bool create_new_category()
        {
            try
            {
                category newCat = new category();
                newCat.category_name = txtCategoryName.Text;
                newCat.code = txtCode.Text;
                newCat.description = txtDescription.Text;
                newCat.owner = 0;
                newCat.created_at = DateTime.Now;
                Database.CRM.categories.InsertOnSubmit(newCat);
                Database.CRM.SubmitChanges();
                return true;
            }
            catch (Exception newCatError)
            {
                MessageBox.Show(newCatError.Message);
                return false;
            }

        }
コード例 #2
0
ファイル: CrmData.cs プロジェクト: hutchlabs/PetraERP
 public static void AddCategory(crmCategoryView SelectedCategory)
 {
     category newCat = new category();
     newCat.category_name = SelectedCategory.Name;
     newCat.code = SelectedCategory.code;
     newCat.description = SelectedCategory.description;
     newCat.status = (bool)SelectedCategory.active;
     newCat.owner = AppData.CurrentUser.id;
     newCat.created_at = DateTime.Now;
     Database.CRM.categories.InsertOnSubmit(newCat);
     Database.CRM.SubmitChanges();
 }
コード例 #3
0
ファイル: CRMDB.designer.cs プロジェクト: njmube/PetraERP
 partial void Deletecategory(category instance);
コード例 #4
0
ファイル: CRMDB.designer.cs プロジェクト: njmube/PetraERP
 partial void Updatecategory(category instance);
コード例 #5
0
ファイル: CRMDB.designer.cs プロジェクト: njmube/PetraERP
 partial void Insertcategory(category instance);