using Common.Models.RequestResponse; using Common.TPService; using JMENepal.JMENepalAPIService; using log4net; namespace Business.BusinessLogic.TPApiServices.JMENepal { public class JMENepalServices : ITPApiServices { private readonly ILog _log = LogManager.GetLogger(typeof(JMENepalServices)); private readonly IJMENepalAPI _jMENepalAPI; public JMENepalServices(IJMENepalAPI jMENepalAPI) { _jMENepalAPI = jMENepalAPI; } public TPResponse GetTPResponse(T model, string MethodName) where T : class { return _jMENepalAPI.GetTPResponse(model, MethodName); } } }