Finalized Maui-series for vs development

This commit is contained in:
2025-08-21 22:08:06 +02:00
parent 543b9c2aaf
commit 8b7afd50a4
10 changed files with 95 additions and 13 deletions

View File

@ -85,7 +85,8 @@ public class ProductViewModel : ViewModelBase
public bool Save()
{
throw new NotImplementedException("Save method is not implemented yet.");
// TODO: Implement Save logic
return true;
}
}

View File

@ -138,7 +138,7 @@ public class UserViewModel : ViewModelBase
#region Save Method
public virtual bool Save()
{
System.Diagnostics.Debugger.Break();
// System.Diagnostics.Debugger.Break();
return true;
}
#endregion