I hope to phrase my question correctly (if not please help me to entitle it better) ,to make it clear,please take a look at my code.
class Factory
{
public string Name { get; set; }
private Person _manager;
public Person Manager
{
get
{
return (_manager );
}
set
{
_manager = value;
if (_manager.WorkPlace!=this)
{
_manager.WorkPlace = this;
}
}
}
public Factory(string name, Person manager)
{
Name = name;
Manager = manager;
if (Manager.WorkPlace ==null)
{
Manager.WorkPlace = this;
}
}
public Factory(string name, string managerFullName, int managerAge)
{
Name = name;
Manager = new Person(managerFullName, managerAge);
if (Manager.WorkPlace != this)
{
Manager.WorkPlace = this;
}
}
public void ShowInfo()
{...}
}
my problem appears when using first constructor of factory class
class Program
{
static void Main(string[] args)
{
Person oPerson1=new Person("Jon",30);
factory oFactory1=new Factory("f1",oPerson1);
factory oFactory2=new Factory("f2",oPerson1);
factory oFactory3=new Factory("f3",oPerson1);
factory oFactory4=new Factory("f4",oPerson1);
...
}
}
as you can see in this constructor I can use one person object(as a manger) more than one time ,in fact so many times it could be used , and there is nothing to prevent me . that means one person could manage many factories,I dont want it.I want a person could mange only one factory,how is that possible?
to handle this issue some workarounds came to my mind.
1- deleting that constructor and using only another one .(but I am looking for a better solution,I would like to have that constructor.)
2- throwing an exception in Run time that i hate it
as i know the c# compiler has nothing to prevent passing an object more than one time.
should I change something in design of the class?
what is your recommendation? what is the best solution ?thank u so much for any advices.
EDIT:Our business Logic
each factory has a manager ,its meaningless to have a factory without a manger.
and a person could be a manager.
person(1..1)-------------(0..1)factory