public VehiclePlotFactoryTests()
 {
     Sut = new VehiclePlotFactory();
     _jsonSerializerSettings = new JsonSerializerSettings
     {
         ContractResolver     = new CamelCasePropertyNamesContractResolver(),
         DateTimeZoneHandling = DateTimeZoneHandling.Utc,
         DateFormatHandling   = DateFormatHandling.IsoDateFormat
     };
 }
Example #2
0
 public VehiclePlotRepository(IVehiclePlotFactory vehiclePlotFactory, IVehiclePlotDao vehiclePlotDao)
 {
     _vehiclePlotFactory = vehiclePlotFactory;
     _vehiclePlotDao     = vehiclePlotDao;
 }