示例#1
0
 public FuncionariosController(
     IFuncionarioRepository funcionarioRepository,
     ICargoRepository cargoRepository,
     IGftRepository gftRepository,
     ITecnologiaRepository tecnologiaRepository
     )
 {
     this._funcionarioRepository = funcionarioRepository;
     this._cargoRepository       = cargoRepository;
     this._gftRepository         = gftRepository;
     this._tecnologiaRepository  = tecnologiaRepository;
 }
示例#2
0
 public GftsController(IGftRepository gftRepository, IEnderecoRepository enderecoRepository)
 {
     this._gftRepository      = gftRepository;
     this._enderecoRepository = enderecoRepository;
 }