Leaf Chart streamline

This commit is contained in:
2016-03-22 07:38:10 -04:00
parent c761952a8a
commit 4b2757b19a
4 changed files with 36 additions and 12 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ namespace LeafWeb.Core.DAL
{
return _db.LeafInputFiles.Find(id);
}
public IQueryable<LeafInputFile> GetLeafInputFiles(LeafInputStatusType status)
{
return
+3
View File
@@ -10,5 +10,8 @@ namespace LeafWeb.Core.Entities
public string Filename { get; set; }
public byte[] Contents { get; set; }
// convention for the filename which LeafCharter uses
public bool IsLeafChartFile => Filename?.StartsWith("cntrlcomparison") ?? false;
}
}