Exemplo n.º 1
0
 /// <summary>
 /// The get containers.
 /// </summary>
 /// <param name="ship">
 /// The ship.
 /// </param>
 /// <param name="port">
 /// The port.
 /// </param>
 /// <returns>
 /// The <see cref="List"/>.
 /// </returns>
 public static List<Container> GetContainers(string ship, string port)
 {
     var container = new DALContainer();
     return container.GetContainers(ship, port);
 }
Exemplo n.º 2
0
 /// <summary>
 /// The get companies.
 /// </summary>
 /// <returns>
 /// The <see cref="List"/>.
 /// </returns>
 public static List<Company> GetCompanies()
 {
     var company = new DALContainer();
     return company.GetCompanies();
 }