Ejemplo n.º 1
0
 internal ServiceResult(ServiceResultKey key, ServiceError error) : this(key)
 {
     if (error != null)
     {
         this.Errors.Add(error);
     }
 }
Ejemplo n.º 2
0
 internal ServiceResult(ServiceResultKey key, object model) : this(key)
 {
     this.Model = model;
 }
Ejemplo n.º 3
0
 internal ServiceResult(ServiceResultKey key)
 {
     this.Key = key;
 }