Fix for translation

feature/haulmkilling
Mark van der Wal 2020-04-14 11:56:38 +02:00
parent fe58d524e0
commit 65debd6f5f
2 changed files with 7 additions and 8 deletions

View File

@ -30,13 +30,13 @@ namespace FarmmapsHerbicide
_farmmapsApiService = farmmapsApiService; _farmmapsApiService = farmmapsApiService;
_generalService = generalService; _generalService = generalService;
_herbicideService = herbicideService; _herbicideService = herbicideService;
_liberatorTarweAgent = new HerbicideAgent() _liberatorTarweAgent = new HerbicideAgent()
{ {
Middel = "Liberator", Name = "Liberator",
Grondsoort = "Klei", SoilType = "Klei",
ExtraProductType = "OS", ExtraInputType = "OrganicMatter",
ActieveStofGehalte = "diflu100+flufenacet400", ActiveSubstanceContent = "diflu100+flufenacet400",
MinDosis = 0.33f, MinDosis = 0.33f,
MaxDosis = 0.6f, MaxDosis = 0.6f,
A = 0.007f, A = 0.007f,
@ -45,8 +45,8 @@ namespace FarmmapsHerbicide
D = 97f, D = 97f,
E = 3f, E = 3f,
P = 1f, P = 1f,
Gewas = "Tarwe", Crop = "Tarwe",
Opmerking = "Org. stof arme grond", Description = "Org. stof arme grond",
TankMix = string.Empty TankMix = string.Empty
}; };
} }

View File

@ -2,7 +2,6 @@ namespace FarmmapsHerbicide.Models
{ {
public class HerbicideAgent public class HerbicideAgent
{ {
public string ProductType { get; set; }
public string Name { get; set; } public string Name { get; set; }
public string SoilType { get; set; } public string SoilType { get; set; }
public string ActiveSubstanceContent{ get; set; } public string ActiveSubstanceContent{ get; set; }