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);
    }
}