24 lines
584 B
C#
24 lines
584 B
C#
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;
|
|
}
|
|
|
|
}
|
|
} |