Guest User

Untitled

a guest
Mar 19th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public class Processor<T, TEntity, TEntityKey> where T : BaseFileEntity<TEntity> where TEntity : class, IEntity<TEntityKey>
  2. {
  3. public Processor(
  4. IRetriever<T, TEntity, TEntityKey> dataRetriever,
  5. IGenerator<T, TEntity> fileGenerator)
  6. }
  7.  
  8.  
  9. public interface IRetriever<T, TEntity, TEntityKey> where T : BaseFileEntity<TEntityKey> where TEntity : class, IEntity<TEntityKey>
  10. {
  11.  
  12. }
  13.  
  14. public interface IGenerator<T, TEntityKey> where T : BaseFileEntity<TEntityKey>
  15. {
  16.  
  17. }
Add Comment
Please, Sign In to add comment