LabWork06

This commit is contained in:
Osyagina_Anna 2024-05-01 21:36:42 +04:00
parent 7d02ac089f
commit 974a8675b4
13 changed files with 8 additions and 60 deletions

View File

@ -1,10 +1,4 @@
using ProjectMotorboat.Drownings; using ProjectMotorboat.Drownings;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectMotorboat; namespace ProjectMotorboat;
public delegate void BoatDelegate(DrawningBoat car); public delegate void BoatDelegate(DrawningBoat car);

View File

@ -1,5 +1,4 @@
using ProjectMotorboat.CollectionGenericObjects; using ProjectMotorboat.Drownings;
using ProjectMotorboat.Drownings;
namespace ProjectMotorboat.CollectionGenericObjects; namespace ProjectMotorboat.CollectionGenericObjects;

View File

@ -1,9 +1,4 @@
using System; 
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectMotorboat.CollectionGenericObjects; namespace ProjectMotorboat.CollectionGenericObjects;
public enum CollectionType public enum CollectionType

View File

@ -1,4 +1,4 @@
using ProjectMotorboat.CollectionGenericObjects; 
using ProjectMotorboat.Drownings; using ProjectMotorboat.Drownings;
namespace ProjectMotorboat.CollectionGenericObjects; namespace ProjectMotorboat.CollectionGenericObjects;

View File

@ -1,9 +1,4 @@
using System; 
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectMotorboat.CollectionGenericObjects; namespace ProjectMotorboat.CollectionGenericObjects;
public interface ICollectionGenericObjects<T> public interface ICollectionGenericObjects<T>

View File

@ -1,10 +1,4 @@
using System; namespace ProjectMotorboat.CollectionGenericObjects;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectMotorboat.CollectionGenericObjects;
public class ListGenericObjects<T> : ICollectionGenericObjects<T> public class ListGenericObjects<T> : ICollectionGenericObjects<T>

View File

@ -1,6 +1,4 @@
 namespace ProjectMotorboat.CollectionGenericObjects;
namespace ProjectMotorboat.CollectionGenericObjects;
public class MassiveGenericObjects<T> : ICollectionGenericObjects<T> public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
where T : class where T : class
{ {

View File

@ -1,9 +1,5 @@
using ProjectMotorboat.Drownings; using ProjectMotorboat.Drownings;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks;
namespace ProjectMotorboat.CollectionGenericObjects; namespace ProjectMotorboat.CollectionGenericObjects;

View File

@ -1,9 +1,4 @@
using System; 
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectMotorboat.Drownings namespace ProjectMotorboat.Drownings
{ {
public enum DirectionType public enum DirectionType

View File

@ -1,10 +1,4 @@
using ProjectMotorboat.Entities; using ProjectMotorboat.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectMotorboat.Drownings; namespace ProjectMotorboat.Drownings;
public class DrawningBoat public class DrawningBoat

View File

@ -1,9 +1,4 @@
using ProjectMotorboat.Entities; using ProjectMotorboat.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectMotorboat.Drownings; namespace ProjectMotorboat.Drownings;
public static class ExtentionDrawningBoat public static class ExtentionDrawningBoat

View File

@ -1,10 +1,4 @@
using System; namespace ProjectMotorboat.Entities;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectMotorboat.Entities;
public class EntityBoat public class EntityBoat
{ {

View File

@ -1,6 +1,5 @@
using ProjectMotorboat.CollectionGenericObjects; using ProjectMotorboat.CollectionGenericObjects;
using ProjectMotorboat.Drownings; using ProjectMotorboat.Drownings;
using System.Windows.Forms;
namespace ProjectMotorboat; namespace ProjectMotorboat;
public partial class FormBoatCollection : Form public partial class FormBoatCollection : Form