36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using CzokoŚmieciarka.DataModels.Interfaces;
|
|
using CzokoŚmieciarka.DataModels.Interfaces.TrashCans;
|
|
using CzokoŚmieciarka.DataModels.Models;
|
|
using CzokoŚmieciarka.WPFv2.Interfaces;
|
|
|
|
namespace CzokoŚmieciarka.WPFv2.Models
|
|
{
|
|
class WPFHouse : IGarbageLocalization, IWPFObject
|
|
{
|
|
public Coords Coords { get; }
|
|
public IEnumerable<ATrashCan> TrashCans { get; set; }
|
|
public string ImagePath { get; set; }
|
|
public Image Image { get; set; }
|
|
|
|
|
|
public WPFHouse(Coords coords, IEnumerable<ATrashCan> trashCans)
|
|
{
|
|
ImagePath = AppDomain.CurrentDomain.BaseDirectory + @"..\..\Images\house.png";
|
|
Image = new Image
|
|
{
|
|
Source = new BitmapImage(new Uri(ImagePath))
|
|
};
|
|
TrashCans = trashCans;
|
|
Coords = coords;
|
|
}
|
|
}
|
|
}
|