Example #1
0
 public RolesController(InnovationsDataContext context)
 {
     _context = context;
 }
Example #2
0
 public InfractionService(InnovationsDataContext context)
 {
     _context = context;
 }
Example #3
0
 public UserService(InnovationsDataContext context, IConfiguration config)
 {
     _context = context;
     _config  = config;
 }
Example #4
0
        public ValuesController(InnovationsDataContext context, UserService userService)
        {
            _context     = context;
            _userService = userService;
            var a = new List <User>();

            if (!_context.Users.Any())
            {
                for (int i = 0; i < 3; i++)
                {
                    userService.CrearPasswordHash("admin", out byte[] passwordHash, out byte[] passwordSalt);
                    var b = new User();
                    b.iduser        = i + 1;
                    b.email         = "admin" + (i + 1) + "@innovation.com";
                    b.active        = true;
                    b.password_hash = passwordHash;
                    b.password_salt = passwordSalt;
                    b.idrole        = 1;
                    b.name          = "Luke" + i;
                    b.lastName      = "Skywalker" + i;
                    a.Add(b);
                }
                context.Users.AddRange(a);
                context.SaveChanges();
            }

            var c = new List <Role>();

            if (!_context.Roles.Any())
            {
                for (int i = 0; i < 2; i++)
                {
                    var d = new Role();
                    d.idrole      = i + 1;
                    d.name        = i == 0 ? "Administrador" : "Empleado";
                    d.description = "roles Innovations";
                    d.active      = true;
                    c.Add(d);
                }
                context.Roles.AddRange(c);
                context.SaveChanges();
            }

            var drivers = new List <Driver>();

            if (!_context.Drivers.Any())
            {
                for (int i = 0; i < 500; i++)
                {
                    var driver = new Driver();
                    driver.dni      = "12345678Z" + i;
                    driver.lastName = "perez" + i;
                    driver.name     = "juan" + i;
                    driver.active   = true;
                    driver.email    = "abc" + i + "@innovation.com";
                    driver.points   = 1000;
                    drivers.Add(driver);
                }
                context.Drivers.AddRange(drivers);
                context.SaveChanges();
            }

            var cars = new List <Car>();

            if (!_context.Cars.Any())
            {
                for (int i = 0; i < 500; i++)
                {
                    var car = new Car();
                    car.enrollment = "12345678Z" + i;
                    car.brand      = i % 2 == 0 ? "Ford" : "KIA";
                    car.model      = "2019";
                    car.active     = true;
                    cars.Add(car);
                }
                context.Cars.AddRange(cars);
                context.SaveChanges();
            }

            var infractions = new List <Infraction>();

            if (!_context.Infractions.Any())
            {
                for (int i = 0; i < 50; i++)
                {
                    var infraction = new Infraction();
                    infraction.dni         = "12345678Z" + i;
                    infraction.description = "multa 500" + i;
                    infraction.enrollment  = "12345678Z" + i;
                    infraction.date        = DateTime.Now;
                    infractions.Add(infraction);
                }
                context.Infractions.AddRange(infractions);
                context.SaveChanges();
            }
        }
Example #5
0
 public DriverService(InnovationsDataContext context)
 {
     _context = context;
 }