public NotaIngresoAlmacenService(INotaIngresoAlmacenRepository notaIngresoAlmacenRepository, ISocioFincaCertificacionRepository socioFincaCertificacionRepository, IMaestroRepository maestroRepository, IGuiaRecepcionMateriaPrimaRepository guiaRecepcionMateriaPrimaRepository, ICorrelativoRepository correlativoRepository)
 {
     _INotaIngresoAlmacenRepository        = notaIngresoAlmacenRepository;
     _IGuiaRecepcionMateriaPrimaRepository = guiaRecepcionMateriaPrimaRepository;
     _ICorrelativoRepository             = correlativoRepository;
     _IMaestroRepository                 = maestroRepository;
     _ISocioFincaCertificacionRepository = socioFincaCertificacionRepository;
 }
 public SocioFincaCertificacionService(ISocioFincaCertificacionRepository socioFincaRepository, IMapper mapper, IOptions <FileServerSettings> fileServerSettings)
 {
     _ISocioFincaRepository = socioFincaRepository;
     _fileServerSettings    = fileServerSettings;
     _Mapper = mapper;
 }