Nearing feature complete for driver auth
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user