Add drafts for Interface business and repository + DataContract presentation
This commit is contained in:
@@ -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
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
10
Back/skydiveLogs-api.Data/Interface/IDropZoneRepository.cs
Normal file
10
Back/skydiveLogs-api.Data/Interface/IDropZoneRepository.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace skydiveLogs_api.Data.Interface
|
||||
{
|
||||
public interface IDropZoneRepository
|
||||
{
|
||||
}
|
||||
}
|
||||
10
Back/skydiveLogs-api.Data/Interface/IGearRepository.cs
Normal file
10
Back/skydiveLogs-api.Data/Interface/IGearRepository.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace skydiveLogs_api.Data.Interface
|
||||
{
|
||||
public interface IGearRepository
|
||||
{
|
||||
}
|
||||
}
|
||||
10
Back/skydiveLogs-api.Data/Interface/IJumpRepository.cs
Normal file
10
Back/skydiveLogs-api.Data/Interface/IJumpRepository.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace skydiveLogs_api.Data.Interface
|
||||
{
|
||||
public interface IJumpRepository
|
||||
{
|
||||
}
|
||||
}
|
||||
10
Back/skydiveLogs-api.Data/Interface/IJumpTypeRepository.cs
Normal file
10
Back/skydiveLogs-api.Data/Interface/IJumpTypeRepository.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace skydiveLogs_api.Data.Interface
|
||||
{
|
||||
public interface IJumpTypeRepository
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user