IColumnService.cs 221 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using CB.Entity;
  6. namespace CB.Interface.Infrastructure
  7. {
  8. public interface IColumnService:IRepository<ColumnInfo>
  9. {
  10. }
  11. }