Interface IGarage<T1, T2>
public interface IGarage<in T1, in T2> where T1 : IGarage<in T1, in T2>
Type Parameters
T1T2
Methods
Deliver(T1, T2)
void Deliver(T1 to, T2 amount)
Parameters
toT1amountT2
Load(T2)
void Load(T2 amount)
Parameters
amountT2
Unload(T2)
void Unload(T2 amount)
Parameters
amountT2