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.

16 lines
382 B

4 days ago
  1. using NFine.Data;
  2. using NFine.Domain._03_Entity.SystemManage;
  3. using NFine.Domain.Entity.SystemManage;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace NFine.Domain._04_IRepository.SystemManage
  10. {
  11. public interface IOrganizeByVendorRepository : IRepositoryBase<OrganizeByVendorEntity>
  12. {
  13. }
  14. }