예제 #1
0
 public ContactDto(IContactState state)
 {
     _state = state;
 }
예제 #2
0
 public Contact(IContactState state, IContactStateRepository repo) : this(state)
 {
     _repo = repo;
 }