Refactor: Separate concerns.

This commit is contained in:
Daniel Kraus
2015-07-06 15:48:43 +02:00
parent 2bd9c0e696
commit 2cf31914dd
19 changed files with 492 additions and 259 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ namespace zaaReloaded2.Dictionaries
/// <summary>
/// A dictionary of <see cref="LabItem"/>s.
/// </summary>
public interface IItemDictionary : IDictionary<string, Models.LabItem>
public interface IItemDictionary : IDictionary<string, LabModel.LabItem>
{
void Merge(IItemDictionary otherItemDictionary);
}
+1 -1
View File
@@ -19,7 +19,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using zaaReloaded2.Models;
using zaaReloaded2.LabModel;
namespace zaaReloaded2.Dictionaries
{
@@ -21,7 +21,7 @@ using System.Linq;
using System.Reflection;
using System.Text;
using System.IO;
using zaaReloaded2.Models;
using zaaReloaded2.LabModel;
namespace zaaReloaded2.Dictionaries
{
@@ -49,7 +49,7 @@ namespace zaaReloaded2.Dictionaries
/// Looks up the material for a given <paramref name="laurisName"/>.
/// </summary>
/// <param name="laurisName">Lauris item name to look up.</param>
/// <returns><see cref="zaaReloaded2.Models.Material"/> enum; if no material is
/// <returns><see cref="zaaReloaded2.LabModel.Material"/> enum; if no material is
/// found in the dictionary, the default material "S" (serum) is returned.</returns>
public Material GetMaterial(string laurisName)
{