示例#1
0
        /// <summary>
        /// Create a new instance of Nutriente viewmodel
        /// </summary>
        /// <param name="service">Service dependency</param>
        /// <param name="serviceNt_Cant">Service dependency</param>
        /// <param name="serviceNt_Func">Service dependency</param>
        /// <param name="serviceNt_Grp">Service dependency</param>
        public NutrienteFindViewModel(INutrienteAppService service, INt_CantAppService serviceNt_Cant, INt_FuncAppService serviceNt_Func, INt_GrpAppService serviceNt_Grp) : this()
        {
            if (service == null)
            {
                throw new ArgumentNullException("service", PresentationResources.exception_WithoutService);
            }
            if (serviceNt_Cant == null)
            {
                throw new ArgumentNullException("serviceNt_Cant", PresentationResources.exception_WithoutService);
            }
            if (serviceNt_Func == null)
            {
                throw new ArgumentNullException("serviceNt_Func", PresentationResources.exception_WithoutService);
            }
            if (serviceNt_Grp == null)
            {
                throw new ArgumentNullException("serviceNt_Grp", PresentationResources.exception_WithoutService);
            }

            _serviceNutriente = service;
            _serviceNt_Cant   = serviceNt_Cant;
            _serviceNt_Func   = serviceNt_Func;
            _serviceNt_Grp    = serviceNt_Grp;

            BuildVm();
        }
示例#2
0
        /// <summary>
        /// Create a new instance of Nt_Cant viewmodel
        /// </summary>
        /// <param name="service">Service dependency</param>
        /// <param name="serviceAlim">Service dependency</param>
        /// <param name="serviceNutriente">Service dependency</param>
        /// <param name="serviceNt_Fuente">Service dependency</param>
        public Nt_CantCrudViewModel(INt_CantAppService service, IAlimAppService serviceAlim, INutrienteAppService serviceNutriente, INt_FuenteAppService serviceNt_Fuente) : this()
        {
            if (service == null)
            {
                throw new ArgumentNullException("service", PresentationResources.exception_WithoutService);
            }
            if (serviceAlim == null)
            {
                throw new ArgumentNullException("serviceAlim", PresentationResources.exception_WithoutService);
            }
            if (serviceNutriente == null)
            {
                throw new ArgumentNullException("serviceNutriente", PresentationResources.exception_WithoutService);
            }
            if (serviceNt_Fuente == null)
            {
                throw new ArgumentNullException("serviceNt_Fuente", PresentationResources.exception_WithoutService);
            }

            _serviceNt_Cant   = service;
            _serviceAlim      = serviceAlim;
            _serviceNutriente = serviceNutriente;
            _serviceNt_Fuente = serviceNt_Fuente;

            BuildVm();
        }
示例#3
0
        /// <summary>
        /// Create a new instance of Nutriente controller
        /// </summary>
        /// <param name="service">Service dependency</param>
        /// <param name="serviceNt_Cant">Service dependency</param>
        /// <param name="serviceNt_Func">Service dependency</param>
        /// <param name="serviceNt_Grp">Service dependency</param>
        public NutrienteController(INutrienteAppService service, INt_CantAppService serviceNt_Cant, INt_FuncAppService serviceNt_Func, INt_GrpAppService serviceNt_Grp)
        {
            if (service == null)
            {
                throw new ArgumentNullException("service", PresentationResources.exception_WithoutService);
            }
            if (serviceNt_Cant == null)
            {
                throw new ArgumentNullException("serviceNt_Cant", PresentationResources.exception_WithoutService);
            }
            if (serviceNt_Func == null)
            {
                throw new ArgumentNullException("serviceNt_Func", PresentationResources.exception_WithoutService);
            }
            if (serviceNt_Grp == null)
            {
                throw new ArgumentNullException("serviceNt_Grp", PresentationResources.exception_WithoutService);
            }

            //_unitOfWork = unitOfWork;
            _serviceNutriente = service;
            _serviceNt_Cant   = serviceNt_Cant;
            _serviceNt_Func   = serviceNt_Func;
            _serviceNt_Grp    = serviceNt_Grp;
        }
示例#4
0
        /// <summary>
        /// Create a new instance of Nt_Cant controller
        /// </summary>
        /// <param name="service">Service dependency</param>
        /// <param name="serviceAlim">Service dependency</param>
        /// <param name="serviceNutriente">Service dependency</param>
        /// <param name="serviceNt_Fuente">Service dependency</param>
        public Nt_CantController(INt_CantAppService service, IAlimAppService serviceAlim, INutrienteAppService serviceNutriente, INt_FuenteAppService serviceNt_Fuente)
        {
            if (service == null)
            {
                throw new ArgumentNullException("service", PresentationResources.exception_WithoutService);
            }
            if (serviceAlim == null)
            {
                throw new ArgumentNullException("serviceAlim", PresentationResources.exception_WithoutService);
            }
            if (serviceNutriente == null)
            {
                throw new ArgumentNullException("serviceNutriente", PresentationResources.exception_WithoutService);
            }
            if (serviceNt_Fuente == null)
            {
                throw new ArgumentNullException("serviceNt_Fuente", PresentationResources.exception_WithoutService);
            }

            //_unitOfWork = unitOfWork;
            _serviceNt_Cant   = service;
            _serviceAlim      = serviceAlim;
            _serviceNutriente = serviceNutriente;
            _serviceNt_Fuente = serviceNt_Fuente;
        }
示例#5
0
     /// <summary>
     /// Create a new instance of Alim viewmodel
     /// </summary>
     /// <param name="service">Service dependency</param>
 	/// <param name="serviceFactConv">Service dependency</param>
 	/// <param name="serviceNt_Cant">Service dependency</param>
 	/// <param name="serviceAlim_Grp">Service dependency</param>
 	/// <param name="serviceAlim_Fuente">Service dependency</param>
 	/// <param name="serviceUniMed">Service dependency</param>
 	/// <param name="serviceRecProd">Service dependency</param>
 	/// <param name="serviceDesCant">Service dependency</param>
 	/// <param name="serviceRendCant">Service dependency</param>
     public AlimFindViewModel(IAlimAppService service, IFactConvAppService serviceFactConv, INt_CantAppService serviceNt_Cant, IAlim_GrpAppService serviceAlim_Grp, IAlim_FuenteAppService serviceAlim_Fuente, IUniMedAppService serviceUniMed, IRecProdAppService serviceRecProd, IDesCantAppService serviceDesCant, IRendCantAppService serviceRendCant) : this()
     {
         if (service == null)
             throw new ArgumentNullException("service", PresentationResources.exception_WithoutService);
 		if (serviceFactConv == null)
             throw new ArgumentNullException("serviceFactConv", PresentationResources.exception_WithoutService);
 		if (serviceNt_Cant == null)
             throw new ArgumentNullException("serviceNt_Cant", PresentationResources.exception_WithoutService);
 		if (serviceAlim_Grp == null)
             throw new ArgumentNullException("serviceAlim_Grp", PresentationResources.exception_WithoutService);
 		if (serviceAlim_Fuente == null)
             throw new ArgumentNullException("serviceAlim_Fuente", PresentationResources.exception_WithoutService);
 		if (serviceUniMed == null)
             throw new ArgumentNullException("serviceUniMed", PresentationResources.exception_WithoutService);
 		if (serviceRecProd == null)
             throw new ArgumentNullException("serviceRecProd", PresentationResources.exception_WithoutService);
 		if (serviceDesCant == null)
             throw new ArgumentNullException("serviceDesCant", PresentationResources.exception_WithoutService);
 		if (serviceRendCant == null)
             throw new ArgumentNullException("serviceRendCant", PresentationResources.exception_WithoutService);
 
         _serviceAlim = service;
         _serviceFactConv = serviceFactConv;
         _serviceNt_Cant = serviceNt_Cant;
         _serviceAlim_Grp = serviceAlim_Grp;
         _serviceAlim_Fuente = serviceAlim_Fuente;
         _serviceUniMed = serviceUniMed;
         _serviceRecProd = serviceRecProd;
         _serviceDesCant = serviceDesCant;
         _serviceRendCant = serviceRendCant;
 
 		BuildVm();
     }
示例#6
0
        /// <summary>
        /// Create a new instance of Alim controller
        /// </summary>
        /// <param name="service">Service dependency</param>
        /// <param name="serviceFactConv">Service dependency</param>
        /// <param name="serviceNt_Cant">Service dependency</param>
        /// <param name="serviceAlim_Grp">Service dependency</param>
        /// <param name="serviceAlim_Fuente">Service dependency</param>
        /// <param name="serviceUniMed">Service dependency</param>
        /// <param name="serviceRecProd">Service dependency</param>
        /// <param name="serviceDesCant">Service dependency</param>
        /// <param name="serviceRendCant">Service dependency</param>
        public AlimController(IAlimAppService service, IFactConvAppService serviceFactConv, INt_CantAppService serviceNt_Cant, IAlim_GrpAppService serviceAlim_Grp, IAlim_FuenteAppService serviceAlim_Fuente, IUniMedAppService serviceUniMed, IRecProdAppService serviceRecProd, IDesCantAppService serviceDesCant, IRendCantAppService serviceRendCant)
        {
            if (service == null)
            {
                throw new ArgumentNullException("service", PresentationResources.exception_WithoutService);
            }
            if (serviceFactConv == null)
            {
                throw new ArgumentNullException("serviceFactConv", PresentationResources.exception_WithoutService);
            }
            if (serviceNt_Cant == null)
            {
                throw new ArgumentNullException("serviceNt_Cant", PresentationResources.exception_WithoutService);
            }
            if (serviceAlim_Grp == null)
            {
                throw new ArgumentNullException("serviceAlim_Grp", PresentationResources.exception_WithoutService);
            }
            if (serviceAlim_Fuente == null)
            {
                throw new ArgumentNullException("serviceAlim_Fuente", PresentationResources.exception_WithoutService);
            }
            if (serviceUniMed == null)
            {
                throw new ArgumentNullException("serviceUniMed", PresentationResources.exception_WithoutService);
            }
            if (serviceRecProd == null)
            {
                throw new ArgumentNullException("serviceRecProd", PresentationResources.exception_WithoutService);
            }
            if (serviceDesCant == null)
            {
                throw new ArgumentNullException("serviceDesCant", PresentationResources.exception_WithoutService);
            }
            if (serviceRendCant == null)
            {
                throw new ArgumentNullException("serviceRendCant", PresentationResources.exception_WithoutService);
            }

            //_unitOfWork = unitOfWork;
            _serviceAlim        = service;
            _serviceFactConv    = serviceFactConv;
            _serviceNt_Cant     = serviceNt_Cant;
            _serviceAlim_Grp    = serviceAlim_Grp;
            _serviceAlim_Fuente = serviceAlim_Fuente;
            _serviceUniMed      = serviceUniMed;
            _serviceRecProd     = serviceRecProd;
            _serviceDesCant     = serviceDesCant;
            _serviceRendCant    = serviceRendCant;
        }
示例#7
0
        /// <summary>
        /// Create a new instance of Nt_Fuente controller
        /// </summary>
        /// <param name="service">Service dependency</param>
        /// <param name="serviceNt_Cant">Service dependency</param>
        public Nt_FuenteController(INt_FuenteAppService service, INt_CantAppService serviceNt_Cant)
        {
            if (service == null)
            {
                throw new ArgumentNullException("service", PresentationResources.exception_WithoutService);
            }
            if (serviceNt_Cant == null)
            {
                throw new ArgumentNullException("serviceNt_Cant", PresentationResources.exception_WithoutService);
            }

            //_unitOfWork = unitOfWork;
            _serviceNt_Fuente = service;
            _serviceNt_Cant   = serviceNt_Cant;
        }
示例#8
0
        /// <summary>
        /// Create a new instance of Nt_Fuente viewmodel
        /// </summary>
        /// <param name="service">Service dependency</param>
        /// <param name="serviceNt_Cant">Service dependency</param>
        public Nt_FuenteCrudViewModel(INt_FuenteAppService service, INt_CantAppService serviceNt_Cant) : this()
        {
            if (service == null)
            {
                throw new ArgumentNullException("service", PresentationResources.exception_WithoutService);
            }
            if (serviceNt_Cant == null)
            {
                throw new ArgumentNullException("serviceNt_Cant", PresentationResources.exception_WithoutService);
            }

            _serviceNt_Fuente = service;
            _serviceNt_Cant   = serviceNt_Cant;

            BuildVm();
        }