Skip to content

Commit

Permalink
Renames projects (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
Enngage committed Aug 15, 2018
1 parent 8cfd45b commit 2e855dd
Show file tree
Hide file tree
Showing 133 changed files with 1,009 additions and 1,033 deletions.
698 changes: 230 additions & 468 deletions Web/Web.csproj → Business/Business.csproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using MedioClinic.Repository.Company;
using MedioClinic.Repository.Culture;
using MedioClinic.Repository.Menu;
using MedioClinic.Repository.Social;
using MedioClinic.Services.Context;
using Business.Repository.Company;
using Business.Repository.Culture;
using Business.Repository.Menu;
using Business.Repository.Social;
using Business.Services.Context;

namespace MedioClinic.DI
namespace Business.DI
{
public class BusinessDependencies : IBusinessDependencies
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Autofac.Builder;
using Autofac.Core;

namespace MedioClinic.DI
namespace Business.DI
{
public class CmsRegistrationSource : IRegistrationSource
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using MedioClinic.Repository.Company;
using MedioClinic.Repository.Culture;
using MedioClinic.Repository.Menu;
using MedioClinic.Repository.Social;
using MedioClinic.Services.Context;
using Business.Repository.Company;
using Business.Repository.Culture;
using Business.Repository.Menu;
using Business.Repository.Social;
using Business.Services.Context;

namespace MedioClinic.DI
namespace Business.DI
{
public interface IBusinessDependencies
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto.Company
namespace Business.Dto.Company
{
public class CompanyDto : IDto
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto.Company
namespace Business.Dto.Company
{
public class CompanyServiceDto : IDto
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto.Contact
namespace Business.Dto.Contact
{
public class ContactSectionDto : IDto
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto.Culture
namespace Business.Dto.Culture
{
public class CultureDto : IDto
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace MedioClinic.Dto.Doctors
namespace Business.Dto.Doctors
{
public class DoctorDto
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto.Doctors
namespace Business.Dto.Doctors
{
public class DoctorSectionDto
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto.Home
namespace Business.Dto.Home
{
public class HomeSectionDto : IDto
{
Expand Down
2 changes: 1 addition & 1 deletion MedioClinic/Dto/IDto.cs → Business/Dto/IDto.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto
namespace Business.Dto
{
public interface IDto
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto.Map
namespace Business.Dto.Map
{
public class MapLocationDto : IDto
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto.MediaLibrary
namespace Business.Dto.MediaLibrary
{
public class MediaLibraryFileDto
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto.Menu
namespace Business.Dto.Menu
{
public class MenuItemDto : IDto
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto.Page
namespace Business.Dto.Page
{
public class PageMetadataDto : IDto
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Dto.Social
namespace Business.Dto.Social
{
public class SocialLinkDto
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Web.Mvc;
using CMS.Helpers;

namespace MedioClinic.Extensions
namespace Business.Extensions
{
public static class LocalizationExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Kentico.Content.Web.Mvc;
using Kentico.Web.Mvc;
using System.Web.Mvc;
using MedioClinic.Models;
using Business.Models;

namespace MedioClinic.Extensions
namespace Business.Extensions
{
public static class UrlExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Kentico.Content.Web.Mvc;

namespace MedioClinic.Models
namespace Business.Models
{

/// <summary>
Expand Down
36 changes: 36 additions & 0 deletions Business/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Business")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Business")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("cee4522f-b7c7-4f50-b1ff-23cf6e170be5")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using MedioClinic.Services.Query;
using Business.Services.Query;

namespace MedioClinic.Repository
namespace Business.Repository
{
public abstract class BaseRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Linq;
using MedioClinic.Dto.Company;
using MedioClinic.Services.Query;
using Business.Dto.Company;
using Business.Services.Query;

namespace MedioClinic.Repository.Company
namespace Business.Repository.Company
{
public class CompanyRepository : BaseRepository, ICompanyRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System.Collections.Generic;
using System.Linq;
using Kentico.Content.Web.Mvc;
using MedioClinic.Dto.Company;
using MedioClinic.Services.Query;
using Business.Dto.Company;
using Business.Services.Query;

namespace MedioClinic.Repository.Company
namespace Business.Repository.Company
{
public class CompanyServiceRepository : BaseRepository, ICompanyServiceRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@


using MedioClinic.Dto.Company;
using Business.Dto.Company;

namespace MedioClinic.Repository.Company
namespace Business.Repository.Company
{
public interface ICompanyRepository : IRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using MedioClinic.Dto.Company;
using Business.Dto.Company;

namespace MedioClinic.Repository.Company
namespace Business.Repository.Company
{
public interface ICompanyServiceRepository : IRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Linq;
using CMS.DocumentEngine.Types.Training;
using MedioClinic.Dto.Contact;
using MedioClinic.Services.Query;
using Business.Dto.Contact;
using Business.Services.Query;

namespace MedioClinic.Repository.Contact
namespace Business.Repository.Contact
{
public class ContactSectionRepository : BaseRepository, IContactSectionRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using MedioClinic.Dto.Contact;
using Business.Dto.Contact;

namespace MedioClinic.Repository.Contact
namespace Business.Repository.Contact
{
public interface IContactSectionRepository : IRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System.Collections.Generic;
using System.Linq;
using CMS.SiteProvider;
using MedioClinic.Dto.Culture;
using MedioClinic.Services.Context;
using Business.Dto.Culture;
using Business.Services.Context;

namespace MedioClinic.Repository.Culture
namespace Business.Repository.Culture
{
public class CultureRepository : ICultureService
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using MedioClinic.Dto.Culture;
using Business.Dto.Culture;

namespace MedioClinic.Repository.Culture
namespace Business.Repository.Culture
{
public interface ICultureService : IRepository
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
using System.Collections.Generic;
using System.Linq;
using Kentico.Content.Web.Mvc;
using MedioClinic.Dto.Doctors;
using MedioClinic.Services.Query;
using Business.Dto.Doctors;
using Business.Services.Query;

namespace MedioClinic.Repository.Doctor
namespace Business.Repository.Doctor
{
public class DoctorRepository : BaseRepository, IDoctorRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System;
using System.Linq;
using CMS.DocumentEngine.Types.Training;
using MedioClinic.Dto.Doctors;
using MedioClinic.Services.Query;
using Business.Dto.Doctors;
using Business.Services.Query;

namespace MedioClinic.Repository.Doctor
namespace Business.Repository.Doctor
{
public class DoctorSectionRepository : BaseRepository, IDoctorSectionRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using MedioClinic.Dto.Doctors;
using Business.Dto.Doctors;

namespace MedioClinic.Repository.Doctor
namespace Business.Repository.Doctor
{
public interface IDoctorRepository : IRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using MedioClinic.Dto.Doctors;
using Business.Dto.Doctors;

namespace MedioClinic.Repository.Doctor
namespace Business.Repository.Doctor
{
public interface IDoctorSectionRepository : IRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Linq;
using CMS.DocumentEngine.Types.Training;
using MedioClinic.Dto.Home;
using MedioClinic.Services.Query;
using Business.Dto.Home;
using Business.Services.Query;

namespace MedioClinic.Repository.Home
namespace Business.Repository.Home
{
public class HomeSectionRepository : BaseRepository, IHomeSectionRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using MedioClinic.Dto.Home;
using Business.Dto.Home;

namespace MedioClinic.Repository.Home
namespace Business.Repository.Home
{
public interface IHomeSectionRepository : IRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MedioClinic.Repository
namespace Business.Repository
{
/// <summary>
/// Interface used for automatic service resolution with DI
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using MedioClinic.Dto.Map;
using Business.Dto.Map;

namespace MedioClinic.Repository.Map
namespace Business.Repository.Map
{
public interface IMapRepository : IRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Collections.Generic;
using System.Linq;
using MedioClinic.Dto.Map;
using MedioClinic.Services.Query;
using Business.Dto.Map;
using Business.Services.Query;

namespace MedioClinic.Repository.Map
namespace Business.Repository.Map
{
public class MapRepository : BaseRepository, IMapRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

using System.Collections.Generic;
using MedioClinic.Dto.Menu;
using Business.Dto.Menu;

namespace MedioClinic.Repository.Menu
namespace Business.Repository.Menu
{
public interface IMenuRepository : IRepository
{
Expand Down
Loading

0 comments on commit 2e855dd

Please sign in to comment.