Add drafts for Interface business and repository + DataContract presentation

This commit is contained in:
Sébastien André
2019-09-20 19:29:54 +02:00
parent 98d48ae2c6
commit 5d476e5e4e
25 changed files with 202 additions and 26 deletions

View File

@@ -1,10 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
using skydiveLogs_api.Data.Interface;
namespace skydiveLogs_api.Data
{
class DropZoneRepository
public class DropZoneRepository : IDropZoneRepository
{
}
}

View File

@@ -1,10 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
using skydiveLogs_api.Data.Interface;
namespace skydiveLogs_api.Data
{
class GearRepository
public class GearRepository : IGearRepository
{
}
}

View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace skydiveLogs_api.Data.Interface
{
public interface IDropZoneRepository
{
}
}

View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace skydiveLogs_api.Data.Interface
{
public interface IGearRepository
{
}
}

View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace skydiveLogs_api.Data.Interface
{
public interface IJumpRepository
{
}
}

View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace skydiveLogs_api.Data.Interface
{
public interface IJumpTypeRepository
{
}
}

View File

@@ -1,10 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
using skydiveLogs_api.Data.Interface;
namespace skydiveLogs_api.Data
{
class JumpRepository
public class JumpRepository : IJumpRepository
{
}
}

View File

@@ -1,10 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
using skydiveLogs_api.Data.Interface;
namespace skydiveLogs_api.Data
{
class JumpTypeRepository
public class JumpTypeRepository : IJumpTypeRepository
{
}
}