public AnunciosController(InventarioDBWContext context)
 {
     _context = context;
 }
 public CategoriasController(InventarioDBWContext context)
 {
     _context = context;
 }
Example #3
0
 public AppInventarioController(InventarioDBWContext context)
 {
     _context = context;
 }
 public GaleriaController(InventarioDBWContext context)
 {
     _context = context;
 }
Example #5
0
 public PedidoController(InventarioDBWContext context)
 {
     _context = context;
 }
 public ClientesController(InventarioDBWContext context)
 {
     _context = context;
 }
Example #7
0
 public RepuestoController(InventarioDBWContext context)
 {
     _context = context;
 }
Example #8
0
        public static async Task Initialize(ApplicationDbContext context, InventarioDBWContext testdbContext, UserManager <ApplicationUser> userManager, RoleManager <ApplicationRole> roleManager)
        {
            //////////////////////   Identity AspNetUser   /////////////////////
            ///
            context.Database.EnsureCreated();

            string adminRole = "Administrador";
            string adminDesc = "Rol de Administrador, con acceso a las configuraciones del Sistema.";
            //---------------------------
            string usuarioRole = "Usuario";
            string usuarioDesc = "Rol de Usuaro, con acceeso a la funcionalidad del Sistema.";
            //---------------------------
            string trabajarRole = "Trabajar";
            string trabajarDesc = "Rol de Trabajar, con acceeso a la funcionalidad del Sistema.";
            //---------------------------
            string contratarRole = "Contratar";
            string contratarDesc = "Rol de Contratar, con acceeso a la funcionalidad del Sistema.";
            //---------------------------
            string vipRole = "VIP";
            string vipDesc = "Rol de VIP, con acceeso a la funcionalidad del Sistema.";
            //---------------------------
            string adminCredential = "*****@*****.**";
            string userCredential  = "*****@*****.**";

            string password = "******";

            if (await roleManager.FindByNameAsync(adminRole) == null)
            {
                await roleManager.CreateAsync(new ApplicationRole(adminRole, adminDesc, DateTime.Now));
            }
            if (await roleManager.FindByNameAsync(usuarioRole) == null)
            {
                await roleManager.CreateAsync(new ApplicationRole(usuarioRole, usuarioDesc, DateTime.Now));
            }
            if (await roleManager.FindByNameAsync(trabajarRole) == null)
            {
                await roleManager.CreateAsync(new ApplicationRole(trabajarRole, trabajarDesc, DateTime.Now));
            }
            if (await roleManager.FindByNameAsync(contratarRole) == null)
            {
                await roleManager.CreateAsync(new ApplicationRole(contratarRole, contratarDesc, DateTime.Now));
            }
            if (await roleManager.FindByNameAsync(vipRole) == null)
            {
                await roleManager.CreateAsync(new ApplicationRole(vipRole, vipDesc, DateTime.Now));
            }

            if (await userManager.FindByNameAsync(adminCredential) == null)
            {
                var user = new ApplicationUser
                {
                    UserName    = adminCredential,
                    Email       = adminCredential,
                    FirstName   = "Admin",
                    LastName    = "istrador",
                    Street      = "Av. Sucre",
                    City        = "Cochabamba",
                    Province    = "Cercado",
                    PostalCode  = "na",
                    Country     = "Bolivia",
                    PhoneNumber = "1234567"
                };

                var result = await userManager.CreateAsync(user);

                if (result.Succeeded)
                {
                    await userManager.AddPasswordAsync(user, password);

                    await userManager.AddToRoleAsync(user, adminRole);
                }
            }

            if (await userManager.FindByNameAsync(userCredential) == null)
            {
                var user = new ApplicationUser
                {
                    UserName    = userCredential,
                    Email       = userCredential,
                    FirstName   = "Usuario",
                    LastName    = "Comino",
                    Street      = "Av. Sucre",
                    City        = "Cochabamba",
                    Province    = "Cercado",
                    PostalCode  = "na",
                    Country     = "Bolivia",
                    PhoneNumber = "1234567"
                };

                var result = await userManager.CreateAsync(user);

                if (result.Succeeded)
                {
                    await userManager.AddPasswordAsync(user, password);

                    await userManager.AddToRoleAsync(user, usuarioRole);
                }
            }
        }
 public AspNetUsersController(InventarioDBWContext context)
 {
     _context = context;
 }
Example #10
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ApplicationDbContext appContext, InventarioDBWContext cominoContext, RoleManager <ApplicationRole> roleManager, UserManager <ApplicationUser> userManager)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseCookiePolicy();

            app.UseAuthentication();

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Home}/{action=Index}/{id?}");
            });

            DummyData.Initialize(appContext, cominoContext, userManager, roleManager).Wait();
        }