using NFine.Data;using NFine.Domain.Entity.ProductManage;using System.Collections.Generic; namespace NFine.Domain.IRepository.ProductManage{ public interface IICSProductRepository : IRepositoryBase<ICSProductEntity> { void DeleteForm(string keyValue); void SubmitForm(ICSProductEntity productEntity, string keyValue); }}
using NFine.Data;
using NFine.Domain.Entity.ProductManage;
using System.Collections.Generic;
namespace NFine.Domain.IRepository.ProductManage
{
public interface IICSProductRepository : IRepositoryBase<ICSProductEntity>
void DeleteForm(string keyValue);
void SubmitForm(ICSProductEntity productEntity, string keyValue);
}