13 lines
239 B
C#
13 lines
239 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using TrackerLibrary.Models;
|
|
|
|
namespace TrackerLibrary.DataAccess
|
|
{
|
|
public interface IDataConnection
|
|
{
|
|
PrizeModel CreatePrize(PrizeModel model);
|
|
}
|
|
}
|