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
358 B
13 lines
358 B
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);
|
|
}
|
|
}
|