This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Account | |
{ | |
public virtual int AccountId { get; set; } | |
[Matches(@"[A-Z]{2}\d{5}")] | |
public virtual string Code { get; set; } | |
[Required] | |
public virtual string Name { get; set; } | |
public virtual int? Age { get; set; } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using kpa.mko.dal; | |
using kpa.common.workflow; | |
using Rainbow.ObjectFlow.Stateful; | |
using kpa.common.container; | |
using kpa.common.interfaces; |
NewerOlder