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

2 years ago
  1. using NFine.Data;
  2. using NFine.Domain.Entity.ProductManage;
  3. using System.Collections.Generic;
  4. namespace NFine.Domain.IRepository.ProductManage
  5. {
  6. public interface IICSProductRepository : IRepositoryBase<ICSProductEntity>
  7. {
  8. void DeleteForm(string keyValue);
  9. void SubmitForm(ICSProductEntity productEntity, string keyValue);
  10. }
  11. }