15 lines
335 B
C#
15 lines
335 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using TrackerLibrary.Models;
|
|
|
|
namespace TrackerLibrary.DataAccess
|
|
{
|
|
public interface IDataConnection
|
|
{
|
|
PrizeModel CreatePrize(PrizeModel model);
|
|
PersonModel CreatePerson(PersonModel model);
|
|
List<PersonModel> GetPerson_All();
|
|
}
|
|
}
|