18 lines
385 B
C#
18 lines
385 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using TrackerLibrary.Models;
|
|
|
|
namespace TrackerLibrary.DataAccess
|
|
{
|
|
public class TextConnector : IDataConnection
|
|
{
|
|
// TODO - Wire up the createPrize for textFiles
|
|
public PrizeModel CreatePrize(PrizeModel model)
|
|
{
|
|
model.Id = 1;
|
|
return model;
|
|
}
|
|
}
|
|
}
|