Account.BLL.YearlyBLL.GetYearlys C# (CSharp) Method

GetYearlys() public method

public GetYearlys ( string start, string end ) : IEnumerable
start string
end string
return IEnumerable
        public IEnumerable<Yearly> GetYearlys(string start, string end)
        {
            return _dal.GetYearlys(start, end);
        }

Same methods

YearlyBLL::GetYearlys ( string start, string end, int pageIndex, int pageSize ) : dynamic
YearlyBLL