Esempio n. 1
0
            public CorrespondenceFact CreateFact(FactMemento memento)
            {
                Claim newFact = new Claim(memento);

                // Create a memory stream from the memento data.
                using (MemoryStream data = new MemoryStream(memento.Data))
                {
                    using (BinaryReader output = new BinaryReader(data))
                    {
                    }
                }

                return newFact;
            }
Esempio n. 2
0
 // Results
 // Business constructor
 public ClaimResponse(
     Claim claim
     ,int approved
     )
 {
     InitializeResults();
     _claim = new PredecessorObj<Claim>(this, RoleClaim, claim);
     _approved = approved;
 }
 public PendingUserNameViewModel(Claim claim)
 {
     _claim = claim;
 }