Ejemplo n.º 1
0
        private static void SeedAnimals(LivestockContext context)
        {
            if (context.Animal != null && context.Animal.Any())
            {
                return;
            }

            context.Animal.AddRange(
                new Animal()
            {
                ID            = 1,
                Type          = (int)LivestockType.Cattle,
                Subspecies    = "Brahman",
                Number        = 1,
                BatchNumber   = 1,
                BirthDate     = new DateTimeOffset(DateTime.UtcNow.AddDays(-15)),
                PurchaseDate  = new DateTimeOffset(DateTime.UtcNow.AddDays(-13)),
                PurchasePrice = 200m,
                ArrivalWeight = 120m,
                Sold          = false,
                SellPrice     = null,
                Deceased      = false
            }
                );

            context.SaveChanges();
        }
Ejemplo n.º 2
0
        private static void SeedMedicalTransactions(LivestockContext context)
        {
            if (context.MedicalTransactions != null && context.MedicalTransactions.Any())
            {
                return;
            }

            var animal = context.Animal.OrderBy(a => a.Number).First();

            if (animal == null)
            {
                SeedAnimals(context);
                animal = context.Animal.OrderBy(a => a.Number).First();
            }

            context.MedicalTransactions.AddRange(
                new MedicalTransaction()
            {
                AnimalID         = animal.ID,
                MedicineTypeCode = 1,
                TransactionDate  = DateTimeOffset.UtcNow,
                Unit             = 1,
                Dose             = 0.5m
            });

            context.SaveChanges();
        }
Ejemplo n.º 3
0
 public static void SeedDevData(IServiceProvider serviceProvider)
 {
     using (var context = new LivestockContext(serviceProvider.GetRequiredService <DbContextOptions <LivestockContext> >()))
     {
         SeedAnimals(context);
         SeedMedicalTransactions(context);
         SeedFeedingTransactions(context);
     }
 }
Ejemplo n.º 4
0
 public static void Initialize(IServiceProvider serviceProvider)
 {
     using (var context = new LivestockContext(serviceProvider.GetRequiredService <DbContextOptions <LivestockContext> >()))
     {
         context.Database.Migrate();
         SeedFeedTypes(context);
         SeedUnits(context);
         SeedMedicine(context);
     }
 }
Ejemplo n.º 5
0
        private static void SeedMedicine(LivestockContext context)
        {
            if (context.Medicine != null && context.Medicine.Any())
            {
                return;
            }

            context.Medicine.AddRange(
                new MedicineType()
            {
                TypeCode    = 1,
                Description = "Antibiotics"
            },
                new MedicineType()
            {
                TypeCode    = 2,
                Description = "Painkillers"
            });

            context.SaveChanges();
        }
Ejemplo n.º 6
0
        private static void SeedUnits(LivestockContext context)
        {
            if (context.Unit != null && context.Unit.Any())
            {
                return;
            }

            context.Unit.AddRange(
                new Unit()
            {
                TypeCode    = 1,
                Description = "ℓ"
            },
                new Unit()
            {
                TypeCode    = 2,
                Description = "kg"
            });

            context.SaveChanges();
        }
Ejemplo n.º 7
0
        private static void SeedFeedTypes(LivestockContext livestockContext)
        {
            if (livestockContext.FeedTypes.Any())
            {
                return;
            }

            livestockContext.FeedTypes.AddRange(
                new FeedType()
            {
                ID          = 1,
                Description = "Wheat"
            },
                new FeedType()
            {
                ID          = 2,
                Description = "Maze"
            });

            livestockContext.SaveChanges();
        }
Ejemplo n.º 8
0
        private static void SeedFeedingTransactions(LivestockContext livestockContext)
        {
            if (livestockContext.FeedingTransactions.Any())
            {
                return;
            }

            var animal = livestockContext.Animal.OrderBy(a => a.Number).First();

            if (animal == null)
            {
                SeedAnimals(livestockContext);
                animal = livestockContext.Animal.OrderBy(a => a.Number).First();
            }

            livestockContext.FeedingTransactions.AddRange(
                new FeedingTransaction()
            {
                ID              = 1,
                AnimalID        = animal.ID,
                FeedID          = 1,
                Quantity        = 0.5m,
                TransactionDate = DateTimeOffset.UtcNow,
                UnitTypeCode    = 2
            },
                new FeedingTransaction()
            {
                ID              = 2,
                AnimalID        = animal.ID,
                FeedID          = 2,
                Quantity        = 1,
                TransactionDate = DateTimeOffset.UtcNow.AddDays(-1),
                UnitTypeCode    = 2
            });

            livestockContext.SaveChanges();
        }
Ejemplo n.º 9
0
 public AnimalRepository(LivestockContext livestockContext) : base(livestockContext)
 {
 }
 public MedicineTypeRepository(LivestockContext context) : base(context)
 {
 }
 public MedicalRepository(LivestockContext dbContext) : base(dbContext)
 {
 }
 public FeedingTransactionRepository(LivestockContext livestockContext) : base(livestockContext)
 {
 }
Ejemplo n.º 13
0
 public FeedTypeRepository(LivestockContext livestockContext) : base(livestockContext)
 {
 }
Ejemplo n.º 14
0
 public UnitRepository(LivestockContext dbContext) : base(dbContext)
 {
 }