コード例 #1
0
 public BaseController(IRepository <J> _repository, IMapper <T, J> _mapper, IComponent <T> _component, IIdEngine _idEngine)
 {
     repository = _repository;
     mapper     = _mapper;
     component  = _component;
     idEngine   = _idEngine;
 }
コード例 #2
0
 public PersonController(IRepository <Entity.Person> repository, IMapper <Person, Entity.Person> mapper, IComponent <Person> component, IIdEngine idEngine)
     : base(repository, mapper, component, idEngine)
 {
 }