You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using NFine.Data; using NFine.Domain.Entity.ProductManage; using NFine.Domain.IRepository.ProductManage; using NFine.Repository.ProductManage; using System.Collections.Generic;
namespace NFine.Repository.ProductManage { public class MaintainRepository : RepositoryBase<ICSProductEntity>, IICSProductRepository { public void DeleteForm(string keyValue) { using (var db = new RepositoryBase().BeginTrans()) { db.Delete<ICSProductEntity>(t => t.F_Id == keyValue); db.Commit(); } }
public void SubmitForm(ICSProductEntity prodictEntity, string keyValue) { using (var db = new RepositoryBase().BeginTrans()) { if (!string.IsNullOrEmpty(keyValue)) { db.Update(prodictEntity); } else { db.Insert(prodictEntity); } db.Commit(); } } } }
|