using System; using System.Collections.Generic; using System.Linq; using System.Web; using OSS.Models; using OSS.Repositories; namespace OSS.Repositories { public class FinancingRepository { public FinancingProfileExternal CreateCountry() { var LCountry = new Countries(); var officeRepsoitory = new FinancingProfileExternal { ListofForeignEquity = LCountry.GetCountries(), ListofForeignLoan = LCountry.GetCountries() }; return officeRepsoitory; } } }