31 lines
860 B
C#
31 lines
860 B
C#
|
|
using DamageAssesment.Api.SurveyResponses.Models;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace DamageAssesment.Api.SurveyResponses.Test
|
|
{
|
|
public class MockData
|
|
{
|
|
public static async Task<(bool, SurveyResponse, string)> getOkResponse(SurveyResponse data)
|
|
{
|
|
return (true, data, null);
|
|
}
|
|
|
|
public static async Task<(bool, dynamic, string)> getOkResponse()
|
|
{
|
|
return (true, new { }, null);
|
|
}
|
|
|
|
public static async Task<(bool, Models.SurveyResponse, string)> getResponse()
|
|
{
|
|
return (false, null, null);
|
|
}
|
|
|
|
public static async Task<Models.SurveyResponse> getSurveyResponseObject()
|
|
{
|
|
return new Models.SurveyResponse { EmployeeId = "Emp1", LocationId = "Loc1", SurveyId = 1, Id = 1 };
|
|
}
|
|
}
|
|
}
|