ShareKhan.domain.FinYear.FinYear C# (CSharp) Method

FinYear() public method

public FinYear ( int year ) : System
year int
return System
        public FinYear(int year)
        {
            if ( 0 > year)
                throw new ArgumentException("Financial Year should be a non-negative value.");

            this.StartYear = year;
        }