tiseza_oss_live/Repositories/FinancingRepository.cs

24 lines
584 B
C#
Raw Normal View History

2025-11-15 11:14:31 +00:00
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;
}
}
}