Simple WPF MVVM Application with Unit Testing.
Part-I: Simple Addition of Two Number Using WPF MVVM Pattern Part-II: Unit testing for same Application Part-I: Simple Addition of Two Number Using WPF MVVM Pattern Folder Structure(Part-I) Folder: Model - > AdditionofNumbers.cs public class AdditionofNumbers : PropertychangeNotify { private int num1; public int NUM1 { get { return num1; } set { num1 = value ; Notifypropertychange( "NUM1" ); } } private int num2; public int NUM2 { ...
Comments
Post a Comment