Deleted Method Get
This commit is contained in:
@ -74,12 +74,11 @@ public partial class Form : System.Windows.Forms.Form
|
||||
int f;
|
||||
int t;
|
||||
AllowDrop = true;
|
||||
bool firstRun = false;
|
||||
Container[] containers;
|
||||
DragDrop += new DragEventHandler(Form1_DragDrop);
|
||||
DragEnter += new DragEventHandler(Form1_DragEnter);
|
||||
Property.Models.A_Property propertyLogic = new(_AppSettings.MaxDegreeOfParallelism, _Configuration.PropertyConfiguration, _ResizeFileNameExtension, _Configuration.Reverse);
|
||||
(j, f, t, containers) = Property.Models.Stateless.Container.GetContainers(_Configuration.PropertyConfiguration, firstRun, propertyLogic);
|
||||
(j, f, t, containers) = Property.Models.Stateless.Container.GetContainers(_Configuration.PropertyConfiguration, propertyLogic);
|
||||
List<MappingFromItem> collection = Program.GetMappingFromItemCollection(_Configuration, containers);
|
||||
foreach (MappingFromItem mappingFromItem in collection)
|
||||
{
|
||||
|
@ -68,7 +68,7 @@ static class Program
|
||||
if (item.Property?.Id is null || item.ImageFileHolder is null)
|
||||
continue;
|
||||
minimumDateTime = IProperty.GetMinimumDateTime(item.Property);
|
||||
(isWrongYear, _) = item.Property.IsWrongYear(item.ImageFileHolder.FullName, minimumDateTime);
|
||||
(isWrongYear, _) = item.Property.IsWrongYear(item.ImageFileHolder, minimumDateTime);
|
||||
mappingFromItem = new(item.Property.Id.Value, item.ImageFileHolder, isWrongYear, minimumDateTime, item.RelativePath, item.ImageFileHolder);
|
||||
results.Add(mappingFromItem);
|
||||
}
|
||||
|
Reference in New Issue
Block a user