Exemplo n.º 1
0
 /// <summary>
 /// Public constructor to initialize SectorServicio service instance
 /// with Unity Constructor Inject Dependency
 /// </summary>
 public FormatoController(IFormatoServices formatoServices,
                          INormaServices normaServices,
                          ITablaServices tablaServices,
                          IPeriodicidadServices periodicidadServices,
                          IPlazoServices plazoServices,
                          IFormatoPlantillaServices formatoPlantillaServices)
 {
     _formatoServices          = formatoServices;
     _normaServices            = normaServices;
     _tablaServices            = tablaServices;
     _periodicidadServices     = periodicidadServices;
     _plazoServices            = plazoServices;
     _formatoPlantillaServices = formatoPlantillaServices;
 }
 /// <summary>
 /// Public constructor to initialize SectorServicio service instance
 /// with Unity Constructor Inject Dependency
 /// </summary>
 public NormaController(INormaServices normaServices,
                        INormaSectorServices normaSectorServices,
                        ISectorServices sectorServicioServices,
                        IEntidadServices entidadServices,
                        ITablaServices tablaServices,
                        ITablaValorServices tablaValorServices,
                        IFormatoServices formatoServices)
 {
     _normaServices          = normaServices;
     _normaSectorServices    = normaSectorServices;
     _sectorServicioServices = sectorServicioServices;
     _entidadServices        = entidadServices;
     _tablaServices          = tablaServices;
     _tablaValorServices     = tablaValorServices;
     _formatoServices        = formatoServices;
 }