IPictureService.cs 136 B

123456789
  1. using CB.Entity;
  2. namespace CB.Interface.Infrastructure
  3. {
  4. public interface IPictureService : IRepository<PictureInfo>
  5. {
  6. }
  7. }