diff --git a/content/aspnetcore/src/CompanyName.ProjectName.Application.Contracts/Organizations/IOrganizationAppService.cs b/content/aspnetcore/src/CompanyName.ProjectName.Application.Contracts/Organizations/IOrganizationAppService.cs new file mode 100644 index 00000000..63953956 --- /dev/null +++ b/content/aspnetcore/src/CompanyName.ProjectName.Application.Contracts/Organizations/IOrganizationAppService.cs @@ -0,0 +1,7 @@ +namespace CompanyNameProjectName.Organizations +{ + public interface IOrganizationAppService + { + + } +} \ No newline at end of file diff --git a/content/aspnetcore/src/CompanyName.ProjectName.Application/Organizations/OrganizationAppService.cs b/content/aspnetcore/src/CompanyName.ProjectName.Application/Organizations/OrganizationAppService.cs new file mode 100644 index 00000000..93dcbe5c --- /dev/null +++ b/content/aspnetcore/src/CompanyName.ProjectName.Application/Organizations/OrganizationAppService.cs @@ -0,0 +1,7 @@ +namespace CompanyNameProjectName.Organizations +{ + public class OrganizationAppService + { + + } +} \ No newline at end of file