You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

30 lines
915 B

using RemitInboundAPI.Common.Helper;
using RemitInboundAPI.Common.Model.RemitModel;
using RemitInboundAPI.Common.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RemitInboundAPI.Business.Helper.ValidationHelper
{
public class StaticValueValidationHelper
{
//public async Task<ApiResponse> ValidateExraStaticRequest(CDDIResponseModel model)
//{
// ApiResponse _response;
// if (string.IsNullOrEmpty(model.SourceOfFund.ToArray))
// {
// _response = new ApiResponse(ResponseHelper.FAILED, "StaticValue can not be empty.");
// }
// else
// {
// _response = new ApiResponse(ResponseHelper.SUCCESS, ResponseMessageHelper.SUCCESS);
// }
// return _response;
//}
}
}