using NFine.Data;
using NFine.Domain.Entity.ProductManage;
using System.Collections.Generic;

namespace NFine.Domain.IRepository.ProductManage
{
    public interface IICSProductPreSellRepository : IRepositoryBase<ICSProductPreSellEntity>
    {
        void DeleteForm(string keyValue);

        void SubmitForm(ICSProductPreSellEntity presellEntity, string keyValue);
    }
}