Nearing feature complete for driver auth

This commit is contained in:
2013-01-09 21:33:57 -05:00
parent 0b4c7914b3
commit bc019923d2
49 changed files with 609 additions and 335 deletions
+5 -2
View File
@@ -48,10 +48,13 @@ namespace MileageTraker.Web.Utility
// write the data
items.Zip(
CustomExtensions.GetNumbers().Skip(3),
(vehicle, r) =>
(item, r) =>
properties.Zip(CustomExtensions.GetNumbers(),
(p, c) => {
var value = p.GetValue(vehicle);
// TODO: Fix this
if (item is User)
return (string)null;
var value = p.GetValue(item);
string formatString = null;