init
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
namespace DatabaseImport
|
||||
{
|
||||
public class CustomerDetails //: BasePropertyChanged
|
||||
{
|
||||
private readonly ISO.CustomerDetails _customerDetails;
|
||||
public string Name
|
||||
{
|
||||
get => _customerDetails.Name;
|
||||
set => _customerDetails.Name = value;
|
||||
}
|
||||
}
|
||||
public class CustomerDetailsList //: BasePropertyChanged
|
||||
{
|
||||
public static void DeleteAll()
|
||||
{
|
||||
ISO.CustomerDetails.DeleteCustomerDetails();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user