Exemplo n.º 1
0
 public bool Equals(Employed other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(other.EmployeeId.Equals(EmployeeId) && other.StartDate.Equals(StartDate));
 }
Exemplo n.º 2
0
 private void Apply(Employed evt)
 {
     Id         = evt.EmployeeId;
     _startDate = evt.StartDate;
 }