纽威
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.
 
 
 
 
 

13 lines
403 B

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