defend
6 years ago
7 changed files with 63 additions and 24 deletions
@ -1,10 +1,10 @@ |
|||||
using Pores.Models; |
using Pores.Models; |
||||
using System.Collections.Generic; |
using System.Collections.ObjectModel; |
||||
|
|
||||
namespace Pores.Interfaces |
namespace Pores.Interfaces |
||||
{ |
{ |
||||
public interface IPoreLocalization |
public interface IPoreLocalization |
||||
{ |
{ |
||||
IList<Pore> GetLocalization(); |
ObservableCollection<Pore> GetLocalization(); |
||||
} |
} |
||||
} |
} |
||||
|
@ -0,0 +1,11 @@ |
|||||
|
using System.Collections.ObjectModel; |
||||
|
using Pores.Helpers; |
||||
|
using Pores.Interfaces; |
||||
|
|
||||
|
namespace Pores.Models.Localizations |
||||
|
{ |
||||
|
public abstract class BaseLocalization : PropertyChangedClass, IPoreLocalization |
||||
|
{ |
||||
|
public abstract ObservableCollection<Pore> GetLocalization(); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue