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
    
  
  
    
  | var css = { | |
| "margin-top": (($(dv).parent().height - $(dv).height()) / 2) + 'px', | |
| "position":"absolute" | |
| }; | |
| $(dv).css(css); | |
| $(dv).parent().css('position', 'relative'); | 
  
    
      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
    
  
  
    
  | [TestFixture] | |
| class when_adding_numbers | |
| { | |
| Maths maths; | |
| void Given_an_object_in_bigint_mode() | |
| { | |
| maths = new Maths(); | |
| maths.BigInt = true; | |
| } | 
  
    
      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
    
  
  
    
  | 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